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