Browse Source

Trying to fix Codenvy factory.

Werner Beroux 8 years ago
parent
commit
85872974c2
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .codenvy.dockerfile
  2. 1 1
      Dockerfile

+ 1 - 1
.codenvy.dockerfile

@@ -3,5 +3,5 @@ FROM codenvy/ubuntu_jdk8
 # Install Ngrok
 ADD https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip /ngrok.zip
 RUN set -x \
- && sudo unzip -o ngrok.zip -d /bin \
+ && sudo unzip -o /ngrok.zip -d /bin \
  && sudo rm -f /ngrok.zip

+ 1 - 1
Dockerfile

@@ -5,7 +5,7 @@ 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 \
- && unzip -o ngrok.zip -d /bin \
+ && unzip -o /ngrok.zip -d /bin \
  && rm -f /ngrok.zip
 
 # Add config script.