Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>2022-08-02 10:12:16 +0300
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>2022-08-02 10:12:16 +0300
commit7c4d6b3726450b5c1cd006ef9317b5b4c8a8d6c1 (patch)
treebf2bbae36030074458a64481afbe549ec2372d29
parent8254e53c7976bdaa3c3298506b6e17f8022df717 (diff)
make sure we use our self built openssl when building Qt
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
-rw-r--r--client-appimage/Dockerfile3
-rw-r--r--client/Dockerfile1
2 files changed, 3 insertions, 1 deletions
diff --git a/client-appimage/Dockerfile b/client-appimage/Dockerfile
index c2a08bf..a973610 100644
--- a/client-appimage/Dockerfile
+++ b/client-appimage/Dockerfile
@@ -101,8 +101,9 @@ RUN sed -i '/deb-src/s/^# //' /etc/apt/sources.list && \
# for updating app images
zsync && \
# https://wiki.qt.io/Building_Qt_5_from_Git
- apt-get build-dep -y qt5-default && \
+ apt-get build-dep -y libqt5core5a && \
# Cleaning up
+ DEBIAN_FRONTEND=noninteractive apt-get remove -q -y --purge libssl-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
diff --git a/client/Dockerfile b/client/Dockerfile
index 2f68666..863d83b 100644
--- a/client/Dockerfile
+++ b/client/Dockerfile
@@ -104,6 +104,7 @@ RUN sed -i '/deb-src/s/^# //' /etc/apt/sources.list && \
# https://wiki.qt.io/Building_Qt_5_from_Git
apt-get build-dep -y libqt5core5a && \
# Cleaning up
+ DEBIAN_FRONTEND=noninteractive apt-get remove -q -y --purge libssl-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*