Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1203 from mboersma/fix-copyright-build
Browse files Browse the repository at this point in the history
fix(Dockerfile): force gunzip of copyright archive
  • Loading branch information
mboersma committed Jan 17, 2017
2 parents 761cc3e + 3f860bf commit 145ee50
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 @@ -28,7 +28,7 @@ RUN buildDeps='gcc git libffi-dev libpq-dev libldap2-dev libsasl2-dev python3-de
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 145ee50

Please sign in to comment.