Created
February 7, 2018 20:21
-
-
Save jordanglassman/67e999432ba441144b4d750c2d7a2442 to your computer and use it in GitHub Desktop.
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 jenkins/jenkins:2.60.3 | |
USER root | |
# test directory is a mounted volume | |
RUN mkdir /root/test | |
VOLUME /root/test | |
COPY files /root/test | |
RUN ls -l /root/test | |
RUN chown -R jenkins:jenkins /root/test | |
RUN ls -l /root/test | |
# test 2 is not, chown is retained | |
RUN mkdir /root/test2 | |
COPY files /root/test2 | |
RUN ls -l /root/test2 | |
RUN chown -R jenkins:jenkins /root/test2 | |
RUN ls -l /root/test2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment