Compare commits

..

2 Commits

Author SHA1 Message Date
Lee
0ad26585e4 Merge pull request 'chore(deps): update alpine docker tag to v3.20.3' (#23) from renovate/alpine-3.x into master
All checks were successful
Publish Docker Image / docker (push) Successful in 1m36s
Reviewed-on: #23
2024-09-08 21:44:12 +00:00
2a614a94de chore(deps): update alpine docker tag to v3.20.3 2024-09-06 23:03:29 +00:00

View File

@ -1,5 +1,5 @@
# Stage 1: Build Nginx
FROM alpine:3.20.2 as builder
FROM alpine:3.20.3 as builder
# Install build dependencies and required tools
RUN apk update && apk upgrade && \
@ -31,7 +31,7 @@ COPY ./docker/index.html /tmp/index.html
COPY ./public /tmp/public
# Stage 2: Create a smaller production image
FROM alpine:3.20.2
FROM alpine:3.20.3
# Copy Nginx and PHP-FPM binaries and configurations from the builder stage
COPY --from=builder /usr/local/nginx /usr/local/nginx