Skip to content
This repository has been archived by the owner on Jun 12, 2018. It is now read-only.
troyfolger edited this page Jan 23, 2015 · 3 revisions

Welcome to the docker-eclipse wiki!

User Contributions / Comments / Tips

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.

Clone this wiki locally