From 2c5397314afb48e89017311eea37f63fff6020ad Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sun, 21 Mar 2021 00:21:12 +0000 Subject: [PATCH] Fix bad tar option --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9640415..60ae19a 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ COPY config.json /config.json # Render the website. Create an archive for offline usage. RUN render-runbooks --config=/config.json RUN cp -r /src/static/* /src/public/ -RUN tar -C /src/public -x -z -v -f /runbooks.tgz . +RUN tar -C /src/public -c -z -v -f /runbooks.tgz . # Use the static-content simple static HTTP server image, and copy # the rendered runbooks from the build stage. -- GitLab