ci: refs #4922 add apt update to Dockerfile

This commit is contained in:
Juan Ferrer 2025-02-11 11:41:45 +01:00
parent 0d2b0cf02e
commit c4c04d8b0f
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ ARG DEBIAN_FRONTEND=noninteractive
# Apache
RUN apt-get install -y --no-install-recommends \
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
apache2 \
libapache2-mod-php \
&& . /etc/apache2/envvars \