Skip to content

Commit d0862bd

Browse files
committed
Update Dockerfile FROM command to use non-ambiguous container sources
Signed-off-by: Ingmar Delsink <ingmardelsink@hotmail.com>
1 parent 80c406f commit d0862bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# You may obtain a copy of the License at the LICENSE file in
77
# the root directory of this source tree.
88

9-
FROM golang:1.22.3-alpine AS builder
9+
FROM docker.io/library/golang:1.22.3-alpine AS builder
1010

1111
RUN apk add --update --no-cache make
1212

@@ -21,7 +21,7 @@ RUN make build
2121

2222
################
2323

24-
FROM alpine:3.20.0
24+
FROM docker.io/library/alpine:3.20.0
2525

2626
# Mitigate CVE-2023-5363
2727
RUN apk add --no-cache --upgrade "openssl>=3.1.4-r1"

scripts/release/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# You may obtain a copy of the License at the LICENSE file in
77
# the root directory of this source tree.
88

9-
FROM alpine:3.20.0
9+
FROM docker.io/library/alpine:3.20.0
1010

1111
COPY terraform-docs /usr/local/bin/terraform-docs
1212

0 commit comments

Comments
 (0)