From 6cdf77fec4ef64c9c8c5cf3d21f49b4e6875fd4a Mon Sep 17 00:00:00 2001 From: Evan Mattiza Date: Tue, 22 Mar 2022 13:13:48 +0000 Subject: [PATCH] some docker build tweaks Signed-off-by: Evan Mattiza --- .gitpod.Dockerfile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 6634613b7e..a0a8e7a1f8 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,13 +1,13 @@ FROM gitpod/workspace-full -# Disable current PHP installation -RUN sudo a2dismod php7.4 -RUN sudo a2dismod mpm_prefork - -# Install apache2 (PHP install requires to do this first) -RUN sudo apt --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install apache2 - -# Update to PHP 8.0 with unattended installation -RUN sudo apt --yes install software-properties-common && sudo add-apt-repository ppa:ondrej/php -y RUN sudo apt update -RUN sudo apt --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install php8.0 +RUN sudo add-apt-repository ppa:ondrej/php -y +# Disable current PHP installation +RUN sudo a2dismod php7.4 mpm_prefork + +# Install apache2 (PHP install requires to do this first) and php8.0 +RUN sudo install-packages \ + -o Dpkg::Options::="--force-confdef" \ + -o Dpkg::Options::="--force-confold" \ + apache2 php8.0 +