Created
October 11, 2013 08:28
-
-
Save outrunthewolf/6931446 to your computer and use it in GitHub Desktop.
untar and moving directory in Dockerfile - a bad way
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RUN cd /home/$USERNAME | |
RUN mkdir downloads | |
RUN cd downloads | |
RUN wget http://www.something.com/test.tar.gz | |
RUN tar -zxvf test.tar.gz | |
RUN cd test | |
RUN ./configure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try something like: