Revert commit c682b4 because it broke appimages

This commit is contained in:
Jonathan White 2019-01-30 15:01:07 -05:00
parent 21d1e981ca
commit c8a99ee3a4
No known key found for this signature in database
GPG Key ID: 440FC65F2E0C6E01

View File

@ -24,45 +24,44 @@ ENV TERM=xterm-256color
RUN set -x \ RUN set -x \
&& apt-get update -y \ && apt-get update -y \
&& apt-get -y install software-properties-common \ && apt-get -y install software-properties-common
&& rm -rf /var/lib/apt/lists/*
RUN set -x \ RUN set -x \
&& add-apt-repository ppa:beineri/opt-${QT5_PPA_VERSION}-trusty \ && add-apt-repository ppa:beineri/opt-${QT5_PPA_VERSION}-trusty \
&& add-apt-repository ppa:phoerious/keepassxc && add-apt-repository ppa:phoerious/keepassxc
# build and runtime dependencies
RUN set -x \ RUN set -x \
&& apt-get update -y \ && apt-get update -y \
&& apt-get upgrade -y \ && apt-get upgrade -y
# build and runtime dependencies
RUN set -x \
&& apt-get install -y \ && apt-get install -y \
cmake3 \ cmake3 \
curl \ curl \
g++ \ g++ \
git \ git \
libargon2-0-dev \
libcurl-no-gcrypt-dev \
libfuse2 \
libgcrypt20-18-dev \ libgcrypt20-18-dev \
libqrencode-dev \ libargon2-0-dev \
libsodium-dev \ libsodium-dev \
libxi-dev \ libcurl-no-gcrypt-dev \
libxtst-dev \
libyubikey-dev \
libykpers-1-dev \
mesa-common-dev \
xclip \
xvfb \
zlib1g-dev \
# ubuntu:14.04 has no quazip, put here as placeholder
# libquazip5-dev
${QT5_VERSION}base \ ${QT5_VERSION}base \
${QT5_VERSION}tools \ ${QT5_VERSION}tools \
${QT5_VERSION}x11extras \ ${QT5_VERSION}x11extras \
${QT5_VERSION}translations \ ${QT5_VERSION}translations \
${QT5_VERSION}imageformats \ ${QT5_VERSION}imageformats \
${QT5_VERSION}svg \ ${QT5_VERSION}svg \
&& rm -rf /var/lib/apt/lists/* zlib1g-dev \
libxi-dev \
libxtst-dev \
# ubuntu:14.04 has no quazip (it's optional)
# libquazip5-dev \
mesa-common-dev \
libyubikey-dev \
libykpers-1-dev \
libqrencode-dev \
xclip \
xvfb
ENV PATH="/opt/${QT5_VERSION}/bin:${PATH}" ENV PATH="/opt/${QT5_VERSION}/bin:${PATH}"
ENV CMAKE_PREFIX_PATH="/opt/${QT5_VERSION}/lib/cmake" ENV CMAKE_PREFIX_PATH="/opt/${QT5_VERSION}/lib/cmake"
@ -75,6 +74,12 @@ RUN set -x \
&& echo "/opt/${QT5_VERSION}/lib" > /etc/ld.so.conf.d/${QT5_VERSION}.conf \ && echo "/opt/${QT5_VERSION}/lib" > /etc/ld.so.conf.d/${QT5_VERSION}.conf \
&& echo "/opt/keepassxc-libs/lib/x86_64-linux-gnu" > /etc/ld.so.conf.d/keepassxc.conf && echo "/opt/keepassxc-libs/lib/x86_64-linux-gnu" > /etc/ld.so.conf.d/keepassxc.conf
# AppImage dependencies
RUN set -x \
&& apt-get install -y \
curl \
libfuse2
RUN set -x \ RUN set -x \
&& curl -L "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage" > /usr/bin/linuxdeploy \ && curl -L "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage" > /usr/bin/linuxdeploy \
&& curl -L "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage" > /usr/bin/linuxdeploy-plugin-qt \ && curl -L "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage" > /usr/bin/linuxdeploy-plugin-qt \
@ -83,6 +88,10 @@ RUN set -x \
&& chmod +x /usr/bin/linuxdeploy-plugin-qt \ && chmod +x /usr/bin/linuxdeploy-plugin-qt \
&& chmod +x /usr/bin/appimagetool && chmod +x /usr/bin/appimagetool
RUN set -x \
&& apt-get autoremove --purge \
&& rm -rf /var/lib/apt/lists/*
VOLUME /keepassxc/src VOLUME /keepassxc/src
VOLUME /keepassxc/out VOLUME /keepassxc/out
WORKDIR /keepassxc WORKDIR /keepassxc