From 506a2761fa49e858ccf66e1e61963edf820d963f Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 30 Jan 2019 19:16:05 -0500 Subject: [PATCH] Upgrade alpine to 3.9 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c363c3e4c69ba..78c93edb5d0db 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