diff --git a/Dockerfile b/Dockerfile index 0557f68..8c3d0ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,9 @@ -from ubuntu:xenial -# Update to newer ubuntu release when MXE supports.. +from ubuntu:bionic RUN apt update -qq -RUN apt -yq install gnupg ca-certificates apt-transport-https software-properties-common -RUN echo "deb http://mirror.mxe.cc/repos/apt xenial main" | tee /etc/apt/sources.list.d/mxeapt.list +RUN apt -yq install gnupg ca-certificates apt-transport-https software-properties-common git +RUN echo "deb http://mirror.mxe.cc/repos/apt bionic main" | tee /etc/apt/sources.list.d/mxeapt.list RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D43A795B73B16ABE9643FE1AFD8FFF16DB45C6AB RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C6BF758A33A3A276 -RUN add-apt-repository -y ppa:beineri/opt-qt-5.11.0-xenial RUN apt update -qq RUN apt install -yq mxe-x86-64-w64-mingw32.static-qtbase mxe-x86-64-w64-mingw32.static-qtdeclarative RUN apt install -yq qtbase5-dev qtdeclarative5-dev qt5-default build-essential @@ -13,4 +11,3 @@ RUN wget http://developer.x-plane.com/wp-content/plugins/code-sample-generation/ RUN unzip *.zip RUN rm XPSDK300.zip RUN mv SDK /XPlaneSDK -