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