Skip to content

Commit

Permalink
fix: COPY --chown regression tests (GoogleContainerTools#2097)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyx committed May 18, 2022
1 parent 2789b97 commit e22346d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions integration/dockerfiles-with-context/issue-57/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ RUN addgroup -g 1001 -S appgroup \

# Add local file with and without chown
ADD --chown=1005:appgroup a.txt /a.txt
RUN [ "$(ls -ln /a.txt | tr -s ' ' | cut -d' ' -f 3)" = 1005 ] && \
[ "$(ls -ln /a.txt | tr -s ' ' | cut -d' ' -f 4)" = 1001 ]
ADD b.txt /b.txt

# Add remote file with and without chown
ADD --chown=bob:1001 https://raw.githubusercontent.com/GoogleContainerTools/kaniko/master/README.md /r1.txt
RUN [ "$(ls -ln /r1.txt | tr -s ' ' | cut -d' ' -f 3)" = 1004 ] && \
[ "$(ls -ln /r1.txt | tr -s ' ' | cut -d' ' -f 4)" = 1001 ]
ADD https://raw.githubusercontent.com/GoogleContainerTools/kaniko/master/README.md /r2.txt

0 comments on commit e22346d

Please sign in to comment.