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:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-06-23 17:14:55 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-06-23 17:14:55 +0300
commitf06145581cac69fe51bc432a58c7ca31ed9ac7c0 (patch)
tree486378e8cb504f19ff1923f47da59c9d291e05a2
parentb1f642066b62c17ec4886ff8dafa95256b254c6a (diff)
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
-rw-r--r--client/Dockerfile-AppImage14
1 files changed, 13 insertions, 1 deletions
diff --git a/client/Dockerfile-AppImage b/client/Dockerfile-AppImage
index 2f52626..6299fc3 100644
--- a/client/Dockerfile-AppImage
+++ b/client/Dockerfile-AppImage
@@ -21,7 +21,19 @@ RUN cd /tmp && \
cd openssl-1.1.0h && \
./config && \
make && \
- make install
+ make install && \
+ cd .. && \
+ rm -rf openssl*
+
+RUN cd /tmp && \
+ wget https://zlib.net/zlib-1.2.11.tar.gz && \
+ tar -xvf zlib-1.2.11.tar.gz && \
+ cd zlib-1.2.11 && \
+ ./configure && \
+ make && \
+ make install && \
+ cd .. && \
+ rm -rf zlib*
RUN cd /tmp && \
wget https://cmake.org/files/v3.11/cmake-3.11.4-Linux-x86_64.tar.gz && \