diff options
author | techknowlogick <matti@mdranta.net> | 2019-02-05 17:53:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-05 17:53:23 -0500 |
commit | 4a747aef7b24970a199f246c22974f7e1ba31382 (patch) | |
tree | 1e1932cc21d47bb7cd79ccb9cb8be82a1fd5c890 /Dockerfile | |
parent | acaf5c96fe7f93440dfbd52dd60b4f1a5656d556 (diff) | |
download | gitea-4a747aef7b24970a199f246c22974f7e1ba31382.tar.gz gitea-4a747aef7b24970a199f246c22974f7e1ba31382.zip |
Upgrade alpine to 3.9 (#5909)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index c363c3e4c6..78c93edb5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ################################### #Build stage -FROM golang:1.11-alpine3.8 AS build-env +FROM golang:1.11-alpine3.9 AS build-env ARG GITEA_VERSION ARG TAGS="sqlite sqlite_unlock_notify" @@ -18,7 +18,7 @@ WORKDIR ${GOPATH}/src/code.gitea.io/gitea RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ && make clean generate build -FROM alpine:3.8 +FROM alpine:3.9 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000 |