Use fully-qualified base image names

This makes the Dockerfile use FQDNs for registry names as recommended by
Podman and other OCI-compatible container solutions.
This commit is contained in:
Timur Demin 2022-03-19 14:38:04 +05:00
parent c153a6ef75
commit a1521884ef
No known key found for this signature in database
GPG key ID: 9EDF3F9D9286FA20

View file

@ -1,4 +1,4 @@
FROM golang:1.18-alpine AS builder
FROM docker.io/library/golang:1.18-alpine AS builder
WORKDIR /src
@ -14,7 +14,7 @@ RUN \
go build -v -o /tmp/gmnhg ./cmd/gmnhg && \
go build -v -o /tmp/md2gmn ./cmd/md2gmn
FROM alpine:3.15 AS runner
FROM docker.io/library/alpine:3.15 AS runner
LABEL maintainer "Timur Demin <me@tdem.in>"