docker-eclipse icon indicating copy to clipboard operation
docker-eclipse copied to clipboard

Dead link in Dockerfile

Open troyfolger opened this issue 10 years ago • 0 comments

Dead link in Dockerfile

The Dockerfile as of this writing uses a Brazilian mirror, eclipse.c3sl.ufpr.br. However, the link was dead for me (I'm in the US). I was able to use a different mirror with success (download.nus.edu.sg).

I updated the Dockerfile as follows:

#RUN wget http://eclipse.c3sl.ufpr.br/technology/epp/downloads/release/luna/SR1/eclipse-java-luna-SR1-linux-gtk-x86_64.tar.gz -O /tmp/eclipse.tar.gz -q && \
RUN wget https://download.nus.edu.sg/mirror/eclipse/technology/epp/downloads/release/luna/SR1/eclipse-java-luna-SR1-linux-gtk-x86_64.tar.gz -O /tmp/eclipse.tar.gz -q && \
    echo 'Installing eclipse' && \
    tar -xf /tmp/eclipse.tar.gz -C /opt && \
    rm /tmp/eclipse.tar.gz

... and re-ran the ./build script, and that worked.

troyfolger avatar Jan 23 '15 01:01 troyfolger