mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-21 06:45:32 -06:00
16 lines
272 B
Docker
16 lines
272 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y git
|
|
|
|
RUN apt-get install -y \
|
|
build-essential \
|
|
g++-mingw-w64-x86-64 \
|
|
gcc-mingw-w64-x86-64
|
|
|
|
ENV QT_SRC_DIR=/qt-work
|
|
ENV QT_PREFIX=/usr/local
|
|
|
|
ADD qtbase.sh /
|
|
#RUN ./qtbase.sh && rm -rf $QT_SRC_DIR
|
|
|