From 5bf77b68495011713dec07429b6a9d38a1ad43fe Mon Sep 17 00:00:00 2001 From: Jonas Leder <jonas@jonasled.de> Date: Sun, 26 Sep 2021 00:37:46 +0200 Subject: [PATCH] use php8-curl instead of php-curl --- .devcontainer/Dockerfile | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 2799812..9df7af2 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:latest RUN apk update && \ apk upgrade && \ - apk add nodejs yarn php8 php8-mysqli php8-mbstring git nano composer openssh-client php-curl curl && \ + apk add nodejs yarn php8 php8-mysqli php8-mbstring php8-curl git nano composer openssh-client curl && \ curl -L https://unpkg.com/@pnpm/self-installer | node ENV ENV="/etc/profile" \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 73ec10f..cc8702a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,5 +22,5 @@ RUN cd API && composer install # |-------------------------------------------------------------------------- FROM gitlab.jonasled.de/jonasled/apache-php-minimal:latest RUN apk update && \ - apk add php8-mysqli php8-mbstring php-curl curl --no-cache + apk add php8-mysqli php8-mbstring php8-curl curl --no-cache COPY --from=composer /build/ . \ No newline at end of file -- GitLab