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