Skip to content
Open
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
2 changes: 1 addition & 1 deletion docker/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN npm install --omit=dev --omit=optional

RUN npm run build

FROM nginx:1.27.0-alpine
FROM nginx:1.29.0-alpine
Copy link

Copilot AI Jul 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Consider pinning the image to a specific digest (e.g., nginx@sha256:<digest>) to ensure reproducible builds and guard against unexpected upstream changes.

Suggested change
FROM nginx:1.29.0-alpine
FROM nginx@sha256:<digest>

Copilot uses AI. Check for mistakes.

WORKDIR /patch

Expand Down
Loading