diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index f13fdbe55f..6fa367a3ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,9 @@ #Build stage FROM golang:1.12-alpine3.10 AS build-env +ARG GOPROXY +ENV GOPROXY ${GOPROXY:-direct} + ARG GITEA_VERSION ARG TAGS="sqlite sqlite_unlock_notify" ENV TAGS "bindata $TAGS" |