cutego/internal/docker/js/Dockerfile

33 lines
1.4 KiB
Docker
Raw Normal View History

2018-08-03 21:17:13 +03:00
FROM ubuntu:16.04
LABEL maintainer therecipe
2018-06-09 03:31:50 +03:00
2018-08-03 21:17:13 +03:00
ENV USER user
ENV HOME /home/$USER
ENV GOPATH $HOME/work
ENV PATH /usr/local/go/bin:$PATH
ENV QT_DIR /opt/Qt
ENV QT_DOCKER true
2018-11-06 20:16:33 +03:00
ENV QT_QMAKE_DIR /usr/local/Qt-5.12.0/bin
2018-08-03 21:17:13 +03:00
COPY --from=therecipe/qt:linux /usr/local/go /usr/local/go
COPY --from=therecipe/qt:linux $GOPATH/bin $GOPATH/bin
COPY --from=therecipe/qt:linux $GOPATH/src/github.com/therecipe/qt $GOPATH/src/github.com/therecipe/qt
COPY --from=therecipe/qt:linux /opt/Qt/5.11.1/gcc_64/include /opt/Qt/5.11.1/gcc_64/include
COPY --from=therecipe/qt:linux /opt/Qt/Docs /opt/Qt/Docs
2018-08-16 01:11:10 +03:00
COPY --from=therecipe/qt:js_base_4 $HOME/emsdk $HOME/emsdk
COPY --from=therecipe/qt:js_base_4 $HOME/.emscripten $HOME/.emscripten
2018-11-06 20:16:33 +03:00
COPY --from=therecipe/qt:js_base_4 /usr/local/Qt-5.12.0 /usr/local/Qt-5.12.0
2018-08-03 21:17:13 +03:00
RUN apt-get -qq update && apt-get --no-install-recommends -qq -y install git && apt-get -qq clean
RUN apt-get -qq update && apt-get --no-install-recommends -qq -y install python2.7 nodejs cmake default-jre && apt-get -qq clean
RUN ln -s /usr/bin/python2.7 /usr/bin/python
RUN go get github.com/gopherjs/gopherjs
RUN $GOPATH/bin/qtsetup prep
RUN $GOPATH/bin/qtsetup check js
2018-11-06 20:16:33 +03:00
RUN QT_STUB=true $GOPATH/bin/qtsetup generate
2018-08-03 21:17:13 +03:00
RUN $GOPATH/bin/qtsetup generate js
RUN $GOPATH/bin/qtsetup install js
RUN cd $GOPATH/src/github.com/therecipe/qt/internal/examples/widgets/line_edits && $GOPATH/bin/qtdeploy build js && rm -rf ./deploy