2016-01-28 23:03:02 +08:00
|
|
|
|
FROM alpine:3.3
|
2016-01-25 21:07:37 +08:00
|
|
|
|
MAINTAINER jp@roemer.im
|
2015-08-25 12:41:01 +08:00
|
|
|
|
|
2015-10-02 17:56:36 +08:00
|
|
|
|
# Install system utils & Gogs runtime dependencies
|
2016-05-12 01:11:59 +08:00
|
|
|
|
ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-amd64 /usr/sbin/gosu
|
2016-02-20 11:54:51 +08:00
|
|
|
|
RUN chmod +x /usr/sbin/gosu \
|
2016-07-15 10:55:05 +08:00
|
|
|
|
&& apk --no-cache --no-progress add ca-certificates bash git linux-pam s6 curl openssh socat tzdata
|
2015-08-25 12:41:01 +08:00
|
|
|
|
|
2016-11-07 18:41:50 +08:00
|
|
|
|
ENV GITEA_CUSTOM /data/gogs
|
2015-08-25 12:41:01 +08:00
|
|
|
|
|
2015-10-02 17:56:36 +08:00
|
|
|
|
COPY . /app/gogs/
|
2015-08-25 12:41:01 +08:00
|
|
|
|
WORKDIR /app/gogs/
|
2015-10-02 17:56:36 +08:00
|
|
|
|
RUN ./docker/build.sh
|
2015-08-17 15:10:23 +08:00
|
|
|
|
|
2016-01-25 21:07:37 +08:00
|
|
|
|
# Configure LibC Name Service
|
|
|
|
|
COPY docker/nsswitch.conf /etc/nsswitch.conf
|
|
|
|
|
|
2015-10-02 18:29:11 +08:00
|
|
|
|
# Configure Docker Container
|
2015-10-02 17:56:36 +08:00
|
|
|
|
VOLUME ["/data"]
|
2015-08-17 15:10:23 +08:00
|
|
|
|
EXPOSE 22 3000
|
2015-10-03 04:54:55 +08:00
|
|
|
|
ENTRYPOINT ["docker/start.sh"]
|
2015-11-17 00:48:09 +08:00
|
|
|
|
CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]
|