diff options
author | techknowlogick <matti@mdranta.net> | 2019-03-08 21:25:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-08 21:25:47 +0100 |
commit | 96f1720d6907abd16641881d8f75177810ca29b2 (patch) | |
tree | 544b6d9c5f8ed748ba0806457abbc8acce600915 /Dockerfile | |
parent | Add security note to issue template (#6281) (diff) | |
download | forgejo-96f1720d6907abd16641881d8f75177810ca29b2.tar.xz forgejo-96f1720d6907abd16641881d8f75177810ca29b2.zip |
Use golang 1.12 to build in dockerfile (#6285)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 78c93edb5d..e1d2ea8412 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ################################### #Build stage -FROM golang:1.11-alpine3.9 AS build-env +FROM golang:1.12-alpine3.9 AS build-env ARG GITEA_VERSION ARG TAGS="sqlite sqlite_unlock_notify" |