We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc04cdf commit 8587297Copy full SHA for 8587297
.codenvy.dockerfile
@@ -3,5 +3,5 @@ FROM codenvy/ubuntu_jdk8
3
# Install Ngrok
4
ADD https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip /ngrok.zip
5
RUN set -x \
6
- && sudo unzip -o ngrok.zip -d /bin \
+ && sudo unzip -o /ngrok.zip -d /bin \
7
&& sudo rm -f /ngrok.zip
Dockerfile
@@ -5,7 +5,7 @@ MAINTAINER Werner Beroux <werner@beroux.com>
# Install ngrok (latest official stable from https://ngrok.com/download).
8
- && unzip -o ngrok.zip -d /bin \
+ && unzip -o /ngrok.zip -d /bin \
9
&& rm -f /ngrok.zip
10
11
# Add config script.
0 commit comments