We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0664e4c commit ce19124Copy full SHA for ce19124
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:alpine3.10 AS binarybuilder
+FROM golang:alpine3.11 AS binarybuilder
2
RUN apk --no-cache --no-progress add --virtual \
3
build-deps \
4
build-base \
@@ -7,10 +7,10 @@ RUN apk --no-cache --no-progress add --virtual \
7
8
WORKDIR /go/src/github.com/G-Node/gogs
9
COPY . .
10
-RUN make build-no-gen TAGS="sqlite cert pam"
+RUN make build-no-gen TAGS="cert pam"
11
12
-FROM alpine:3.10
13
-ADD https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64 /usr/sbin/gosu
+FROM alpine:3.11
+ADD https://github.com/tianon/gosu/releases/download/1.11/gosu-amd64 /usr/sbin/gosu
14
RUN chmod +x /usr/sbin/gosu \
15
&& echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \
16
&& apk --no-cache --no-progress add \
0 commit comments