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 hosts/DOS/ms-dos-6-22/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine
FROM alpine:3.23.3
Copy link

Copilot AI Jan 28, 2026

Choose a reason for hiding this comment

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

alpine:3.23.3 is a mutable tag and can be repointed over time, which reduces build reproducibility and weakens supply-chain guarantees. If you want fully reproducible builds, consider pinning the image by digest as well (e.g., FROM alpine:3.23.3@sha256:...).

Suggested change
FROM alpine:3.23.3
FROM alpine:3.23.3@sha256:REPLACE_WITH_ACTUAL_DIGEST

Copilot uses AI. Check for mistakes.
LABEL name="RetroNetSec_6.22"
COPY Dos6.22.img /root
EXPOSE 5900
Expand Down