Dockerfile correction
rnreekez opened this issue · 1 comments
rnreekez commented
Thanks for the work you're doing in the repo, this has been extremely helpful!
One note here: https://github.com/evarga/docker-images/blob/master/ubuntu-js/Dockerfile#L12
Within that line, you're actually blowing out the sources.list so will likely see some broken dependency errors down the road.
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
should be
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" >> /etc/apt/sources.list
rnreekez commented
Oh sorry, my mistake I see that you're appending multiple sources within that line.