diff options
author | techknowlogick <hello@techknowlogick.com> | 2018-11-28 21:33:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-28 21:33:35 -0500 |
commit | 5c13ba8d2e8e3688b1ee2f912a4d4e8a57a33021 (patch) | |
tree | 9703edbc6e6b111cec2bf64a682d02eb53435d52 /Dockerfile | |
parent | 2dc805c0c6e85099f3f346ba78f3a52abf032ce4 (diff) | |
download | gitea-5c13ba8d2e8e3688b1ee2f912a4d4e8a57a33021.tar.gz gitea-5c13ba8d2e8e3688b1ee2f912a4d4e8a57a33021.zip |
Upgrade alpine to 3.8 (#5423)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 40299809c4..c363c3e4c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ################################### #Build stage -FROM golang:1.11-alpine3.7 AS build-env +FROM golang:1.11-alpine3.8 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.7 +FROM alpine:3.8 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000 |