Browse Source

explicit docker.io in Dockerfile

See #2082
tags/v2.12.0-rc1
Shivaram Lingamneni 8 months ago
parent
commit
202de687df
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Dockerfile

+ 2
- 2
Dockerfile View File

@@ -1,5 +1,5 @@
1 1
 ## build ergo binary
2
-FROM golang:1.21-alpine AS build-env
2
+FROM docker.io/golang:1.21-alpine AS build-env
3 3
 
4 4
 RUN apk upgrade -U --force-refresh --no-cache && apk add --no-cache --purge --clean-protected -l -u make git
5 5
 
@@ -16,7 +16,7 @@ RUN sed -i 's/^\(\s*\)\"127.0.0.1:6667\":.*$/\1":6667":/' /go/src/github.com/erg
16 16
 RUN make install
17 17
 
18 18
 ## build ergo container
19
-FROM alpine:3.13
19
+FROM docker.io/alpine:3.13
20 20
 
21 21
 # metadata
22 22
 LABEL maintainer="Daniel Oaks <daniel@danieloaks.net>,Daniel Thamdrup <dallemon@protonmail.com>" \

Loading…
Cancel
Save