From 61ad0fbfdd2e3dc2a97bc91333eccddde3b5eb32 Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 8 Mar 2022 08:06:02 -0600 Subject: [PATCH] fix: add PHP8 repoistory and upgrade --- .gitpod.Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 0a4f1ebab0..e6fd6b45c6 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -3,4 +3,6 @@ FROM gitpod/workspace-full RUN curl -fsSL https://deno.land/x/install/install.sh | sh RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno -RUN sudo apt-get install php8.0 +RUN sudo apt install software-properties-common && sudo add-apt-repository ppa:ondrej/php -y +RUN sudo apt update +RUN sudo apt upgrade -y