From 5c13ba8d2e8e3688b1ee2f912a4d4e8a57a33021 Mon Sep 17 00:00:00 2001
From: techknowlogick <hello@techknowlogick.com>
Date: Wed, 28 Nov 2018 21:33:35 -0500
Subject: [PATCH] Upgrade alpine to 3.8 (#5423)

---
 Dockerfile | 4 ++--
 1 file 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