Comments and minor refactoring.
This commit is contained in:
parent
9a4f20bfed
commit
28ad6c9e9a
|
@ -1,10 +1,12 @@
|
||||||
|
# Note: The newer busybox:glibc is missing libpthread.so.0.
|
||||||
FROM busybox:ubuntu-14.04
|
FROM busybox:ubuntu-14.04
|
||||||
MAINTAINER Werner Beroux <werner@beroux.com>
|
MAINTAINER Werner Beroux <werner@beroux.com>
|
||||||
|
|
||||||
# Install ngrok
|
# Install ngrok
|
||||||
ADD https://dl.ngrok.com/ngrok_2.0.19_linux_amd64.zip /ngrok.zip
|
ADD https://dl.ngrok.com/ngrok_2.0.19_linux_amd64.zip /ngrok.zip
|
||||||
RUN unzip -o ngrok.zip -d /bin && \
|
RUN set -x \
|
||||||
rm -f ngrok.zip
|
&& unzip -o ngrok.zip -d /bin \
|
||||||
|
&& rm -f /ngrok.zip
|
||||||
|
|
||||||
# Add config script
|
# Add config script
|
||||||
COPY ngrok.yml /home/ngrok/.ngrok2/
|
COPY ngrok.yml /home/ngrok/.ngrok2/
|
||||||
|
|
Loading…
Reference in New Issue