From 5263eef8795c579e9b47d7f81b4dad96868aa54e Mon Sep 17 00:00:00 2001 From: Andre Zoledziowski Date: Mon, 7 May 2018 15:37:50 +0200 Subject: [PATCH] BugFix: missing apt-get update after sources edit --- webapp/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/Dockerfile b/webapp/Dockerfile index 9b07c74..102a44f 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -20,8 +20,6 @@ RUN apt-get update && \ apt-get install -y --no-install-recommends \ apache2 \ libapache2-mod-php7.0 \ - z-push-backend-kopano \ - z-push-config-apache \ && rm -rf /var/cache/apt /var/lib/apt/lists # trigger rebuild from here on new version - dont use cache my dear docker @@ -30,6 +28,8 @@ ARG WEBAPP_VERSION # install kopano web app and refresh ca-certificates RUN echo ${WEBAPP_VERSION} > /kopano/buildversion && \ apt-get update && apt-get install -y --no-install-recommends \ + z-push-backend-kopano \ + z-push-config-apache \ ca-certificates \ kopano-webapp \ kopano-webapp-plugin-contactfax \