diff options
author | techknowlogick <techknowlogick@gitea.io> | 2019-12-26 19:52:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-26 19:52:32 -0500 |
commit | d86e5871869a32b7b8dddc688641d2c4257b740d (patch) | |
tree | 041f833bdbefa8705bcdf2383d219d443ef95294 /Dockerfile | |
parent | 5748755e8ecf1063c2e78a8f114bd60ad55fdae5 (diff) | |
download | gitea-d86e5871869a32b7b8dddc688641d2c4257b740d.tar.gz gitea-d86e5871869a32b7b8dddc688641d2c4257b740d.zip |
alpine 3.11 (#9440)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index ee0418c92c..bc8ac4f4be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ################################### #Build stage -FROM golang:1.13-alpine3.10 AS build-env +FROM golang:1.13-alpine3.11 AS build-env ARG GOPROXY ENV GOPROXY ${GOPROXY:-direct} @@ -21,7 +21,7 @@ WORKDIR ${GOPATH}/src/code.gitea.io/gitea RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ && make clean build -FROM alpine:3.10 +FROM alpine:3.11 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000 |