Skip to content
Merged
Show file tree
Hide file tree
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 playground/publishers/Publishers.AppHost/qots/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY . .
RUN go build qots.go

# Stage 2: Run the Go program
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0.20251206
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0.20260102
WORKDIR /app
COPY --from=builder /app/qots .
CMD ["./qots"]
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ WORKDIR /app
COPY . .
RUN go build -o qots .

FROM mcr.microsoft.com/cbl-mariner/base/core:2.0
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0.20260102
COPY --from=builder /app/qots /qots
ENTRYPOINT ["/qots"]
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY . .
RUN echo "Built at 20260119162134" > /build-info.txt
RUN go build -o qots .

FROM mcr.microsoft.com/cbl-mariner/base/core:2.0
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0.20260102
COPY --from=builder /app/qots /qots
Comment on lines 6 to 8
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

PR description/title say this is a bump from cbl-mariner/base/core:2.0.20251206 across 3 directories, but in this file the previous base image was :2.0 (floating) and this change pins it to a specific dated tag. Please update the PR description/title to reflect the pinning change (or keep the floating tag if that was the intent).

Copilot uses AI. Check for mistakes.
COPY --from=builder /build-info.txt /build-info.txt
ENTRYPOINT ["/qots"]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY . .
RUN go build qots.go

# Stage 2: Run the Go program
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0.20251206
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0.20260102
WORKDIR /app
RUN --mount=type=secret,id=SECRET_ASENV cp /run/secrets/SECRET_ASENV /app/SECRET_ASENV
COPY --from=builder /app/qots .
Expand Down
Loading