summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authortechknowlogick <hello@techknowlogick.com>2019-06-20 19:47:51 -0400
committerGitHub <noreply@github.com>2019-06-20 19:47:51 -0400
commit8db4541ecf626f43449d89f15a65ac530509d205 (patch)
treecb29c1ed5c3880dff45518fa26a1f02a790f8a1d /Dockerfile
parentde9b398cde5f8882387a5efd318ca7d42333d20f (diff)
downloadgitea-8db4541ecf626f43449d89f15a65ac530509d205.tar.gz
gitea-8db4541ecf626f43449d89f15a65ac530509d205.zip
Alpine 3.10 (#7256)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 1aae5fc6d4..f13fdbe55f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
###################################
#Build stage
-FROM golang:1.12-alpine3.9 AS build-env
+FROM golang:1.12-alpine3.10 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.9
+FROM alpine:3.10
LABEL maintainer="maintainers@gitea.io"
EXPOSE 22 3000