File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11# Build stage
2- FROM php:8.3 -cli-alpine as builder
2+ FROM php:8.4 -cli-alpine AS builder
33
44RUN apk add --no-cache --virtual .build-deps autoconf build-base git \
55 && pecl install -o -f redis \
@@ -12,12 +12,13 @@ RUN git clone --depth=1 https://github.com/RobiNN1/phpCacheAdmin.git . \
1212 && apk del .build-deps
1313
1414# Final stage
15- FROM php:8.3 -fpm-alpine
15+ FROM php:8.4 -fpm-alpine
1616
1717COPY --from=builder /usr/local/lib/php/extensions /usr/local/lib/php/extensions
1818COPY --from=builder /usr/local/etc/php/conf.d /usr/local/etc/php/conf.d
1919COPY --from=builder /app /var/www/html
2020
21+ # NGINX configuration is here intentionally
2122RUN apk add --no-cache nginx \
2223 && mkdir -p /var/www/html/tmp \
2324 && chown -R nobody:nobody /var/www/html \
You can’t perform that action at this time.
0 commit comments