From 6910e1b03d73f8b3f4d62e0afc1ccd27519021d3 Mon Sep 17 00:00:00 2001 From: Jonas Leder Date: Sat, 30 Oct 2021 07:12:31 +0000 Subject: [PATCH] add symlink from php to php8 --- .devcontainer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4d1e231..1062674 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,6 +2,7 @@ FROM alpine:edge RUN apk update && \ apk upgrade && \ apk add nodejs yarn php8 php8-mysqli php8-mbstring php8-curl php8-simplexml git nano composer openssh-client curl && \ + ln -s /usr/bin/php8 /usr/bin/php && \ curl -L https://unpkg.com/@pnpm/self-installer | node ENV ENV="/etc/profile" \ No newline at end of file