Skip to content

Commit

Permalink
Merge pull request #113 from bacongobbler/gunzip-fail
Browse files Browse the repository at this point in the history
fix(Dockerfile): fix gunzip -f
  • Loading branch information
Matthew Fisher authored Jan 25, 2017
2 parents 034e35c + f14a6db commit 21ede65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN buildDeps='gcc git libffi-dev libssl-dev python3-dev python3-pip python3-whe
apt-get clean -y && \
# package up license files if any by appending to existing tar
COPYRIGHT_TAR='/usr/share/copyrights.tar'; \
gunzip $COPYRIGHT_TAR.gz; tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright; gzip $COPYRIGHT_TAR && \
gunzip -f $COPYRIGHT_TAR.gz; tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright; gzip $COPYRIGHT_TAR && \
rm -rf \
/usr/share/doc \
/usr/share/man \
Expand Down

0 comments on commit 21ede65

Please sign in to comment.