Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,7 @@ COPY . .
RUN yarn build-prod

# Stage 4: Production
FROM nginx:mainline-alpine-slim AS production

RUN apk update \
&& apk add --no-cache pcre2=10.46-r0 \
&& rm -rf /var/cache/apk/*
FROM nginx:1.29.4-alpine-slim AS production

# Copy nginx configuration and build application inside the final container
COPY --from=builder /app/docker/nginx.conf /etc/nginx/conf.d/default.conf
Expand Down
Loading