Skip to content

Commit

Permalink
Prefix golang image with docker.io
Browse files Browse the repository at this point in the history
This way the image can be easily build using podman / other image builders which don't default to docker hub.
  • Loading branch information
Jannik Hollenbach authored and Jannik Hollenbach committed Sep 29, 2024
1 parent cc68496 commit 2a7e8f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion progress-watchdog/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23 AS builder
FROM --platform=$BUILDPLATFORM docker.io/golang:1.23 AS builder
WORKDIR /src
COPY go.mod go.sum ./
# cache deps before building and copying source so that we don't need to re-download as much
Expand Down

0 comments on commit 2a7e8f4

Please sign in to comment.