diff options
author | techknowlogick <techknowlogick@gitea.io> | 2023-04-07 02:41:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 02:41:49 -0400 |
commit | 6148e38b8640f732be41e5cf12b9521e9aa51b17 (patch) | |
tree | 1942b554daf14794dc45706de1ef623911a8db55 | |
parent | ed7245f997e980fe5daa9e0d298539bc5e62ac59 (diff) | |
download | gitea-6148e38b8640f732be41e5cf12b9521e9aa51b17.tar.gz gitea-6148e38b8640f732be41e5cf12b9521e9aa51b17.zip |
Hardcode path to docker images (#23955)
Fix #23954
This allows for building on platforms that don't have docker hub as the
default container registry.
-rw-r--r-- | Dockerfile | 4 | ||||
-rw-r--r-- | Dockerfile.rootless | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index fad8ae1790..3623085e47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ #Build stage -FROM golang:1.20-alpine3.17 AS build-env +FROM docker.io/library/golang:1.20-alpine3.17 AS build-env ARG GOPROXY ENV GOPROXY ${GOPROXY:-direct} @@ -23,7 +23,7 @@ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ # Begin env-to-ini build RUN go build contrib/environment-to-ini/environment-to-ini.go -FROM alpine:3.17 +FROM docker.io/library/alpine:3.17 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000 diff --git a/Dockerfile.rootless b/Dockerfile.rootless index 98051f7ddb..67bd9c4880 100644 --- a/Dockerfile.rootless +++ b/Dockerfile.rootless @@ -1,5 +1,5 @@ #Build stage -FROM golang:1.20-alpine3.17 AS build-env +FROM docker.io/library/golang:1.20-alpine3.17 AS build-env ARG GOPROXY ENV GOPROXY ${GOPROXY:-direct} @@ -23,7 +23,7 @@ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ # Begin env-to-ini build RUN go build contrib/environment-to-ini/environment-to-ini.go -FROM alpine:3.17 +FROM docker.io/library/alpine:3.17 LABEL maintainer="maintainers@gitea.io" EXPOSE 2222 3000 |