2018-08-13 20:50:25 +08:00
|
|
|
|
FROM golang:alpine AS binarybuilder
|
|
|
|
|
|
# Install build deps
|
|
|
|
|
|
RUN apk --no-cache --no-progress add --virtual build-deps build-base git linux-pam-dev
|
|
|
|
|
|
WORKDIR /go/src/github.com/gogs/gogs
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
RUN make build TAGS="sqlite cert pam"
|
2015-08-25 12:41:01 +08:00
|
|
|
|
|
2018-08-13 20:50:25 +08:00
|
|
|
|
FROM alpine:latest
|
2015-10-02 10:56:36 +01:00
|
|
|
|
# Install system utils & Gogs runtime dependencies
|
2018-08-13 20:50:25 +08:00
|
|
|
|
ADD https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64 /usr/sbin/gosu
|
2016-02-19 22:54:51 -05:00
|
|
|
|
RUN chmod +x /usr/sbin/gosu \
|
2017-10-13 21:26:39 +01:00
|
|
|
|
&& echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \
|
|
|
|
|
|
&& apk --no-cache --no-progress add \
|
|
|
|
|
|
bash \
|
|
|
|
|
|
ca-certificates \
|
|
|
|
|
|
curl \
|
|
|
|
|
|
git \
|
|
|
|
|
|
linux-pam \
|
|
|
|
|
|
openssh \
|
|
|
|
|
|
s6 \
|
|
|
|
|
|
shadow \
|
|
|
|
|
|
socat \
|
2019-08-06 23:25:05 -03:00
|
|
|
|
tzdata \
|
|
|
|
|
|
rsync
|
2015-08-25 12:41:01 +08:00
|
|
|
|
|
2015-10-02 21:18:13 +02:00
|
|
|
|
ENV GOGS_CUSTOM /data/gogs
|
2015-08-25 12:41:01 +08:00
|
|
|
|
|
2017-10-13 21:26:39 +01:00
|
|
|
|
# Configure LibC Name Service
|
|
|
|
|
|
COPY docker/nsswitch.conf /etc/nsswitch.conf
|
|
|
|
|
|
|
2018-08-13 20:50:25 +08:00
|
|
|
|
WORKDIR /app/gogs
|
|
|
|
|
|
COPY docker ./docker
|
|
|
|
|
|
COPY templates ./templates
|
|
|
|
|
|
COPY public ./public
|
|
|
|
|
|
COPY --from=binarybuilder /go/src/github.com/gogs/gogs/gogs .
|
2017-02-19 02:43:27 +01:00
|
|
|
|
|
2018-08-13 20:50:25 +08:00
|
|
|
|
RUN ./docker/finalize.sh
|
2015-08-17 03:10:23 -04:00
|
|
|
|
|
2015-10-02 11:29:11 +01:00
|
|
|
|
# Configure Docker Container
|
2015-10-02 10:56:36 +01:00
|
|
|
|
VOLUME ["/data"]
|
2015-08-17 03:10:23 -04:00
|
|
|
|
EXPOSE 22 3000
|
2017-02-19 02:43:27 +01:00
|
|
|
|
ENTRYPOINT ["/app/gogs/docker/start.sh"]
|
2015-11-16 16:48:09 +00:00
|
|
|
|
CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]
|