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 play-with-docker/105-website/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.23.1
FROM nginx:1.29.0
Copy link

Copilot AI Jul 14, 2025

Choose a reason for hiding this comment

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

Consider pinning the image to a specific digest (e.g., nginx@sha256:...) to ensure build reproducibility and prevent unexpected image changes.

Suggested change
FROM nginx:1.29.0
FROM nginx@sha256:abc123def456ghi789jkl012mno345pqr678stu901vwx234yz567890abc1234

Copilot uses AI. Check for mistakes.


COPY wrapper.sh /

Expand Down
Loading