Update Dockerfile FROM command to use non-ambiguous container sources

Signed-off-by: Ingmar Delsink <ingmardelsink@hotmail.com>
This commit is contained in:
Ingmar Delsink
2022-10-17 12:16:15 +02:00
parent 80c406f95d
commit d0862bd555
2 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
# You may obtain a copy of the License at the LICENSE file in
# the root directory of this source tree.
FROM golang:1.22.3-alpine AS builder
FROM docker.io/library/golang:1.22.3-alpine AS builder
RUN apk add --update --no-cache make
@@ -21,7 +21,7 @@ RUN make build
################
FROM alpine:3.20.0
FROM docker.io/library/alpine:3.20.0
# Mitigate CVE-2023-5363
RUN apk add --no-cache --upgrade "openssl>=3.1.4-r1"

View File

@@ -6,7 +6,7 @@
# You may obtain a copy of the License at the LICENSE file in
# the root directory of this source tree.
FROM alpine:3.20.0
FROM docker.io/library/alpine:3.20.0
COPY terraform-docs /usr/local/bin/terraform-docs