2015-10-02 15:26:36 +05:30
|
|
|
|
FROM alpine:3.2
|
2016-01-25 18:37:37 +05:30
|
|
|
|
MAINTAINER jp@roemer.im
|
2015-08-25 10:11:01 +05:30
|
|
|
|
|
2015-10-02 15:26:36 +05:30
|
|
|
|
# Install system utils & Gogs runtime dependencies
|
2015-10-11 00:18:26 +05:30
|
|
|
|
ADD https://github.com/tianon/gosu/releases/download/1.6/gosu-amd64 /usr/sbin/gosu
|
2015-10-02 15:26:36 +05:30
|
|
|
|
RUN echo "@edge http://dl-4.alpinelinux.org/alpine/edge/main" | tee -a /etc/apk/repositories \
|
|
|
|
|
&& echo "@community http://dl-4.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories \
|
|
|
|
|
&& apk -U --no-progress upgrade \
|
2015-10-02 16:31:02 +05:30
|
|
|
|
&& apk -U --no-progress add ca-certificates bash git linux-pam s6@edge curl openssh socat \
|
2015-10-02 15:26:36 +05:30
|
|
|
|
&& chmod +x /usr/sbin/gosu
|
2015-08-25 10:11:01 +05:30
|
|
|
|
|
2015-10-03 00:48:13 +05:30
|
|
|
|
ENV GOGS_CUSTOM /data/gogs
|
2015-08-25 10:11:01 +05:30
|
|
|
|
|
2015-10-02 15:26:36 +05:30
|
|
|
|
COPY . /app/gogs/
|
2015-08-25 10:11:01 +05:30
|
|
|
|
WORKDIR /app/gogs/
|
2015-10-02 15:26:36 +05:30
|
|
|
|
RUN ./docker/build.sh
|
2015-08-17 12:40:23 +05:30
|
|
|
|
|
2016-01-25 18:37:37 +05:30
|
|
|
|
# Configure LibC Name Service
|
|
|
|
|
COPY docker/nsswitch.conf /etc/nsswitch.conf
|
|
|
|
|
|
2015-10-02 15:59:11 +05:30
|
|
|
|
# Configure Docker Container
|
2015-10-02 15:26:36 +05:30
|
|
|
|
VOLUME ["/data"]
|
2015-08-17 12:40:23 +05:30
|
|
|
|
EXPOSE 22 3000
|
2015-10-03 02:24:55 +05:30
|
|
|
|
ENTRYPOINT ["docker/start.sh"]
|
2015-11-16 22:18:09 +05:30
|
|
|
|
CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]
|