Files
Atay-Makhzan/Dockerfile
T

23 lines
614 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
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-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 12:41:01 +08:00
2016-11-07 11:41:50 +01:00
ENV GITEA_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/"]