Created
November 13, 2015 23:35
-
-
Save sethbergman/efc0afc2931ad740dda0 to your computer and use it in GitHub Desktop.
docker tag <image> <newName>/<repoName>:<tagName>
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
FROM busybox:ubuntu-14.04 | |
RUN echo “#!/bin/sh\n” > /test.sh | |
RUN echo “echo \”this is version 1\”” >> /test.sh | |
ENTRYPOINT [“sh”, “/test.sh”] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment