Skip to content

Commit 21ede65

Browse files
author
Matthew Fisher
authored
Merge pull request #113 from bacongobbler/gunzip-fail
fix(Dockerfile): fix gunzip -f
2 parents 034e35c + f14a6db commit 21ede65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN buildDeps='gcc git libffi-dev libssl-dev python3-dev python3-pip python3-whe
1414
apt-get clean -y && \
1515
# package up license files if any by appending to existing tar
1616
COPYRIGHT_TAR='/usr/share/copyrights.tar'; \
17-
gunzip $COPYRIGHT_TAR.gz; tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright; gzip $COPYRIGHT_TAR && \
17+
gunzip -f $COPYRIGHT_TAR.gz; tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright; gzip $COPYRIGHT_TAR && \
1818
rm -rf \
1919
/usr/share/doc \
2020
/usr/share/man \

0 commit comments

Comments
 (0)