Files
Atay-Makhzan/Dockerfile
T

23 lines
606 B
Docker
Raw Normal View History

FROM alpine:3.3
MAINTAINER jp@roemer.im
2015-08-25 12:41:01 +08:00
2015-10-02 10:56:36 +01:00
# Install system utils & Gogs runtime dependencies
2016-02-25 17:41:41 +00:00
ADD https://github.com/tianon/gosu/releases/download/1.7/gosu-amd64 /usr/sbin/gosu
2016-02-19 22:54:51 -05: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-25 12:41:01 +08:00
2015-10-02 21:18:13 +02:00
ENV GOGS_CUSTOM /data/gogs
2015-08-25 12:41:01 +08:00
2015-10-02 10:56:36 +01:00
COPY . /app/gogs/
2015-08-25 12:41:01 +08:00
WORKDIR /app/gogs/
2015-10-02 10:56:36 +01:00
RUN ./docker/build.sh
2015-08-17 03:10:23 -04:00
# Configure LibC Name Service
COPY docker/nsswitch.conf /etc/nsswitch.conf
# Configure Docker Container
2015-10-02 10:56:36 +01:00
VOLUME ["/data"]
2015-08-17 03:10:23 -04:00
EXPOSE 22 3000
2015-10-02 21:54:55 +01:00
ENTRYPOINT ["docker/start.sh"]
2015-11-16 16:48:09 +00:00
CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]