summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authortechknowlogick <hello@techknowlogick.com>2018-11-28 21:33:35 -0500
committerGitHub <noreply@github.com>2018-11-28 21:33:35 -0500
commit5c13ba8d2e8e3688b1ee2f912a4d4e8a57a33021 (patch)
tree9703edbc6e6b111cec2bf64a682d02eb53435d52 /Dockerfile
parent2dc805c0c6e85099f3f346ba78f3a52abf032ce4 (diff)
downloadgitea-5c13ba8d2e8e3688b1ee2f912a4d4e8a57a33021.tar.gz
gitea-5c13ba8d2e8e3688b1ee2f912a4d4e8a57a33021.zip
Upgrade alpine to 3.8 (#5423)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
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