diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index a7ff05fe3f..2bd6a9716d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:3.2 -MAINTAINER roemer.jp@gmail.com +MAINTAINER jp@roemer.im # Install system utils & Gogs runtime dependencies ADD https://github.com/tianon/gosu/releases/download/1.6/gosu-amd64 /usr/sbin/gosu @@ -15,6 +15,9 @@ COPY . /app/gogs/ WORKDIR /app/gogs/ RUN ./docker/build.sh +# Configure LibC Name Service +COPY docker/nsswitch.conf /etc/nsswitch.conf + # Configure Docker Container VOLUME ["/data"] EXPOSE 22 3000 |