chore(deps): update alpine docker tag to v3.18.5

This commit is contained in:
Renovate Bot 2023-11-30 23:02:18 +00:00
parent c2219d60b9
commit c6a9c1406a

View File

@ -1,5 +1,5 @@
# Stage 1: Build Nginx
FROM alpine:3.18.4 as builder
FROM alpine:3.18.5 as builder
# Install build dependencies and required tools
RUN apk update && apk upgrade && \
@ -25,7 +25,7 @@ COPY ./upload.php /tmp/upload.php
COPY ./docker/start.sh /start.sh
# Stage 2: Create a smaller production image
FROM alpine:3.18.4
FROM alpine:3.18.5
# Copy Nginx and PHP-FPM binaries and configurations from the builder stage
COPY --from=builder /usr/local/nginx /usr/local/nginx