gogs/Dockerfile

25 lines
673 B
Docker
Raw Normal View History

FROM alpine:3.5
2015-08-25 07:41:01 +03:00
# Install system utils & Gogs runtime dependencies
ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-amd64 /usr/sbin/gosu
RUN chmod +x /usr/sbin/gosu \
2016-07-15 05:55:05 +03:00
&& apk --no-cache --no-progress add ca-certificates bash git linux-pam s6 curl openssh socat tzdata
2015-08-25 07:41:01 +03:00
ENV GOGS_CUSTOM /data/gogs
2015-08-25 07:41:01 +03:00
COPY . /app/gogs/build
WORKDIR /app/gogs/build
RUN ./docker/build-go.sh \
&& ./docker/build.sh \
&& ./docker/finalize.sh
2015-08-17 10:10:23 +03:00
# Configure LibC Name Service
COPY docker/nsswitch.conf /etc/nsswitch.conf
# Configure Docker Container
VOLUME ["/data"]
2015-08-17 10:10:23 +03:00
EXPOSE 22 3000
ENTRYPOINT ["/app/gogs/docker/start.sh"]
CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]