Skip to content

Commit

Permalink
Merge pull request #2086 from slingamn/dockerio
Browse files Browse the repository at this point in the history
explicit docker.io in Dockerfile
  • Loading branch information
slingamn authored Sep 10, 2023
2 parents 4b00c6c + 202de68 commit ee22bda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## build ergo binary
FROM golang:1.21-alpine AS build-env
FROM docker.io/golang:1.21-alpine AS build-env

RUN apk upgrade -U --force-refresh --no-cache && apk add --no-cache --purge --clean-protected -l -u make git

Expand All @@ -16,7 +16,7 @@ RUN sed -i 's/^\(\s*\)\"127.0.0.1:6667\":.*$/\1":6667":/' /go/src/github.com/erg
RUN make install

## build ergo container
FROM alpine:3.13
FROM docker.io/alpine:3.13

# metadata
LABEL maintainer="Daniel Oaks <[email protected]>,Daniel Thamdrup <[email protected]>" \
Expand Down

0 comments on commit ee22bda

Please sign in to comment.