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