Dockerfile: qualify docker.io registry

Other container runtimes can use Dockerfiles, but complain if the
registry is unqualified. It's a good practice to qualify this so
it is not implied.
This commit is contained in:
Alan Orth
2025-04-23 15:35:29 +03:00
parent 41920b491a
commit 27b25082b9

View File

@@ -1,5 +1,5 @@
ARG from_builder=golang:1.24-alpine3.21
ARG from=alpine:3.21
ARG from_builder=docker.io/golang:1.24-alpine3.21
ARG from=docker.io/alpine:3.21
ARG BUILDPLATFORM