summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-06-10 22:44:56 -0600
committermo khan <mo.khan@gmail.com>2020-06-10 22:44:56 -0600
commite1d0fdb12e20a2c2f184b5b91bab45d80d8e31a2 (patch)
treef29afe21930cff2a5e0ff9ccf0a7c1178e7edb8b
parent3e5e33c507e3c9a0c0be112964cee56735ed3e7f (diff)
Increase compression level
-rw-r--r--examples/003/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/003/Dockerfile b/examples/003/Dockerfile
index baa4fa5..1ce1443 100644
--- a/examples/003/Dockerfile
+++ b/examples/003/Dockerfile
@@ -3,7 +3,7 @@ ENV PACKAGES git ruby zstd
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends $PACKAGES \
&& git clone https://github.com/spandx/cache.git /opt/db \
- && tar --use-compress-program zstd -cf /opt/db.tar.zst /opt/db \
+ && tar --use-compress-program "zstd -19 -T0" -cf /opt/db.tar.zst /opt/db \
&& rm -fr /opt/db
COPY run.sh /run.sh
RUN chmod +x /run.sh