From e33f8dbf63ae9de2c3bfd464b38c913b82eb58c9 Mon Sep 17 00:00:00 2001
From: Jonas Leder <jonas@jonasled.de>
Date: Sun, 26 Sep 2021 00:32:40 +0200
Subject: [PATCH] add php curl

---
 .devcontainer/Dockerfile | 2 +-
 Dockerfile               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 0a8112f..2799812 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 curl && \
+    apk add nodejs yarn php8 php8-mysqli php8-mbstring git nano composer openssh-client php-curl 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 ad68d81..73ec10f 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 curl --no-cache
+    apk add php8-mysqli php8-mbstring php-curl curl --no-cache
 COPY --from=composer /build/ .
\ No newline at end of file
-- 
GitLab