Skip to content
This repository was archived by the owner on Aug 17, 2023. It is now read-only.

Commit 861100b

Browse files
committed
fix(Dockerfile): force gunzip of license files
1 parent 7d0ee09 commit 861100b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN buildDeps='g++ gcc make ruby-dev'; \
2525
apt-get clean -y && \
2626
# package up license files if any by appending to existing tar
2727
COPYRIGHT_TAR='/usr/share/copyrights.tar'; \
28-
gunzip $COPYRIGHT_TAR.gz; tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright; gzip $COPYRIGHT_TAR && \
28+
gunzip -f $COPYRIGHT_TAR.gz; tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright; gzip $COPYRIGHT_TAR && \
2929
rm -rf \
3030
/usr/share/doc \
3131
/usr/share/man \

0 commit comments

Comments
 (0)