| 1234567891011121314151617181920212223242526272829303132333435363738 | FROM alpine:3.5# Install system utils & Gogs runtime dependenciesADD https://github.com/tianon/gosu/releases/download/1.9/gosu-amd64 /usr/sbin/gosuRUN chmod +x /usr/sbin/gosu \  && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \  && apk --no-cache --no-progress add \    bash \    ca-certificates \    curl \    git \    linux-pam \    openssh \    s6 \    shadow \    socat \    tzdataENV GOGS_CUSTOM /data/gogs# Configure LibC Name ServiceCOPY docker/nsswitch.conf /etc/nsswitch.confCOPY docker /app/gogs/dockerCOPY templates /app/gogs/templatesCOPY public /app/gogs/publicWORKDIR /app/gogs/buildCOPY . .RUN    ./docker/build-go.sh \    && ./docker/build.sh \    && ./docker/finalize.sh# Configure Docker ContainerVOLUME ["/data"]EXPOSE 22 3000ENTRYPOINT ["/app/gogs/docker/start.sh"]CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]
 |