From 65abf7b0eab6c6c29c7ed26cfa7d0e466f0f5338 Mon Sep 17 00:00:00 2001 From: Arjan Weurding Date: Wed, 23 Dec 2020 14:47:01 +0100 Subject: [PATCH] Make sure the repository cache is up to date when installing the PHP extensions in workspace --- workspace/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 9e22420e..43e76871 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -198,6 +198,14 @@ COPY ./crontab /etc/cron.d RUN chmod -R 644 /etc/cron.d +########################################################################### +# Update Repositories +########################################################################### + +USER root + +RUN apt-get update -yqq + ########################################################################### # Drush: ###########################################################################