3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-21 19:39:43 +01:00

explicit docker.io in Dockerfile

See #2082
This commit is contained in:
Shivaram Lingamneni 2023-09-10 00:13:48 -04:00
parent 4b00c6c48e
commit 202de687df

View File

@ -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
@ -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 <daniel@danieloaks.net>,Daniel Thamdrup <dallemon@protonmail.com>" \