adding auth

This commit is contained in:
2026-05-06 11:56:38 +02:00
parent 1de68361a9
commit 86f3d13629
8 changed files with 431 additions and 59 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
FROM php:8.3-fpm-alpine
RUN apk add --no-cache linux-headers \
&& docker-php-ext-install pcntl sockets || \
docker-php-ext-install pcntl
RUN apk add --no-cache linux-headers curl-dev \
&& docker-php-ext-install curl pcntl sockets || \
docker-php-ext-install curl pcntl
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
+3 -4
View File
@@ -1,10 +1,9 @@
FROM php:8.3-cli-alpine
RUN apk add --no-cache linux-headers git
RUN apk add --no-cache linux-headers curl-dev git
RUN apk add --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/v3.20/main linux-headers \
&& docker-php-ext-install pcntl sockets || \
docker-php-ext-install pcntl
RUN docker-php-ext-install curl pcntl sockets 2>/dev/null || \
docker-php-ext-install curl pcntl
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer