2017-01-22 12:42:56 -05:00
|
|
|
# KeePassXC Linux Release Build Dockerfile
|
|
|
|
# Copyright (C) 2017 KeePassXC team <https://keepassxc.org/>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
# version 3 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-10-24 08:32:51 -04:00
|
|
|
FROM ubuntu:14.04
|
|
|
|
|
|
|
|
ENV QT5_VERSION=59
|
|
|
|
ENV QT5_PPA_VERSION=${QT5_VERSION}2
|
2017-01-22 12:42:56 -05:00
|
|
|
|
2017-02-06 13:52:21 -05:00
|
|
|
RUN set -x \
|
2017-10-24 08:32:51 -04:00
|
|
|
&& apt-get update -y \
|
|
|
|
&& apt-get -y install software-properties-common
|
2017-02-06 13:52:21 -05:00
|
|
|
|
|
|
|
RUN set -x \
|
2017-10-24 08:32:51 -04:00
|
|
|
&& add-apt-repository ppa:beineri/opt-qt${QT5_PPA_VERSION}-trusty
|
2017-06-25 19:40:40 -04:00
|
|
|
|
|
|
|
RUN set -x \
|
2017-10-24 08:32:51 -04:00
|
|
|
&& apt-get update -y \
|
|
|
|
&& apt-get upgrade -y
|
2017-02-06 13:52:21 -05:00
|
|
|
|
2017-10-21 11:02:46 -04:00
|
|
|
# build and runtime dependencies
|
2017-01-22 12:42:56 -05:00
|
|
|
RUN set -x \
|
2017-10-24 08:32:51 -04:00
|
|
|
&& apt-get install -y \
|
|
|
|
cmake3 \
|
|
|
|
g++ \
|
|
|
|
libgcrypt20-dev \
|
|
|
|
qt${QT5_VERSION}base \
|
|
|
|
qt${QT5_VERSION}tools \
|
|
|
|
qt${QT5_VERSION}x11extras \
|
|
|
|
zlib1g-dev \
|
|
|
|
libxi-dev \
|
|
|
|
libxtst-dev \
|
|
|
|
mesa-common-dev
|
|
|
|
|
|
|
|
ENV CMAKE_PREFIX_PATH=/opt/qt${QT5_VERSION}/lib/cmake
|
|
|
|
ENV LD_LIBRARY_PATH=/opt/qt${QT5_VERSION}/lib
|
|
|
|
RUN set -x \
|
|
|
|
&& echo /opt/qt${QT_VERSION}/lib > /etc/ld.so.conf.d/qt${QT5_VERSION}.conf
|
2017-10-21 11:02:46 -04:00
|
|
|
|
|
|
|
# AppImage dependencies
|
|
|
|
RUN set -x \
|
2017-10-24 08:32:51 -04:00
|
|
|
&& apt-get install -y \
|
2017-01-22 16:39:05 -05:00
|
|
|
wget \
|
2017-10-24 08:32:51 -04:00
|
|
|
libfuse2
|
2017-02-06 13:52:21 -05:00
|
|
|
|
2017-10-21 11:02:46 -04:00
|
|
|
# build libyubikey
|
|
|
|
ENV YUBIKEY_VERSION=1.13
|
2017-02-06 13:52:21 -05:00
|
|
|
RUN set -x \
|
2017-10-21 11:02:46 -04:00
|
|
|
&& wget "https://developers.yubico.com/yubico-c/Releases/libyubikey-${YUBIKEY_VERSION}.tar.gz" \
|
|
|
|
&& tar xf libyubikey-${YUBIKEY_VERSION}.tar.gz \
|
|
|
|
&& cd libyubikey-${YUBIKEY_VERSION} \
|
2017-10-24 08:32:51 -04:00
|
|
|
&& ./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu \
|
2017-10-21 11:02:46 -04:00
|
|
|
&& make \
|
|
|
|
&& make install \
|
|
|
|
&& cd .. \
|
|
|
|
&& rm -Rf libyubikey-${YUBIKEY_VERSION}*
|
|
|
|
|
|
|
|
# build libykpers-1
|
|
|
|
ENV YKPERS_VERSION=1.18.0
|
2017-10-24 08:32:51 -04:00
|
|
|
RUN set -x \
|
|
|
|
&& apt-get install -y libusb-dev
|
2017-10-21 11:02:46 -04:00
|
|
|
RUN set -x \
|
|
|
|
&& wget "https://developers.yubico.com/yubikey-personalization/Releases/ykpers-${YKPERS_VERSION}.tar.gz" \
|
|
|
|
&& tar xf ykpers-${YKPERS_VERSION}.tar.gz \
|
|
|
|
&& cd ykpers-${YKPERS_VERSION} \
|
2017-10-24 08:32:51 -04:00
|
|
|
&& ./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu \
|
2017-10-21 11:02:46 -04:00
|
|
|
&& make \
|
|
|
|
&& make install \
|
|
|
|
&& cd .. \
|
|
|
|
&& rm -Rf ykpers-${YKPERS_VERSION}*
|
|
|
|
|
2017-01-22 12:42:56 -05:00
|
|
|
VOLUME /keepassxc/src
|
|
|
|
VOLUME /keepassxc/out
|
|
|
|
WORKDIR /keepassxc
|