Upgrade alpine to 3.8 (#5423)

This commit is contained in:
techknowlogick
2018-11-28 21:33:35 -05:00
committed by GitHub
parent 2dc805c0c6
commit 5c13ba8d2e

View File

@ -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