1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-07 16:06:14 +00:00

BugFix: missing apt-get update after sources edit

This commit is contained in:
Andre Zoledziowski 2018-05-07 15:37:50 +02:00
parent ca099eb08e
commit 5263eef879

View File

@ -20,8 +20,6 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
apache2 \ apache2 \
libapache2-mod-php7.0 \ libapache2-mod-php7.0 \
z-push-backend-kopano \
z-push-config-apache \
&& rm -rf /var/cache/apt /var/lib/apt/lists && rm -rf /var/cache/apt /var/lib/apt/lists
# trigger rebuild from here on new version - dont use cache my dear docker # 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 # install kopano web app and refresh ca-certificates
RUN echo ${WEBAPP_VERSION} > /kopano/buildversion && \ RUN echo ${WEBAPP_VERSION} > /kopano/buildversion && \
apt-get update && apt-get install -y --no-install-recommends \ apt-get update && apt-get install -y --no-install-recommends \
z-push-backend-kopano \
z-push-config-apache \
ca-certificates \ ca-certificates \
kopano-webapp \ kopano-webapp \
kopano-webapp-plugin-contactfax \ kopano-webapp-plugin-contactfax \