Browse Source

Smaller, based on latest Alpine.

Fixing also warning as in issue #15.
Werner Beroux 7 years ago
parent
commit
8ce5abc579
1 changed files with 8 additions and 13 deletions
  1. 8 13
      Dockerfile

+ 8 - 13
Dockerfile

@@ -1,26 +1,21 @@
-# Note: The newer busybox:glibc is missing libpthread.so.0.
-FROM busybox:ubuntu-14.04
+FROM alpine:3.7
 MAINTAINER Werner Beroux <werner@beroux.com>
 MAINTAINER Werner Beroux <werner@beroux.com>
 
 
-# Install ngrok (latest official stable from https://ngrok.com/download).
-ADD https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip /ngrok.zip
 RUN set -x \
 RUN set -x \
+    # Install ngrok (latest official stable from https://ngrok.com/download).
+ && apk add --no-cache curl \
+ && curl -Lo /ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip \
  && unzip -o /ngrok.zip -d /bin \
  && unzip -o /ngrok.zip -d /bin \
- && rm -f /ngrok.zip
+ && rm -f /ngrok.zip \
+    # Create non-root user.
+ && adduser -h /home/ngrok -D -u 6737 ngrok
 
 
 # Add config script.
 # Add config script.
 COPY ngrok.yml /home/ngrok/.ngrok2/
 COPY ngrok.yml /home/ngrok/.ngrok2/
 COPY entrypoint.sh /
 COPY entrypoint.sh /
 
 
-# Create non-root user.
-RUN set -x \
- && echo 'ngrok:x:6737:6737:Ngrok user:/home/ngrok:/bin/false' >> /etc/passwd \
- && echo 'ngrok:x:6737:' >> /etc/group \
- && chown -R ngrok:ngrok /home/ngrok \
- && chmod -R go=u,go-w /home/ngrok \
- && chmod go= /home/ngrok
-
 USER ngrok
 USER ngrok
+ENV USER=ngrok
 
 
 EXPOSE 4040
 EXPOSE 4040