diff options
Diffstat (limited to 'examples/003')
| -rw-r--r-- | examples/003/Dockerfile | 5 | ||||
| -rw-r--r-- | examples/003/run.sh | 8 |
2 files changed, 7 insertions, 6 deletions
diff --git a/examples/003/Dockerfile b/examples/003/Dockerfile index 35b83ea..a722743 100644 --- a/examples/003/Dockerfile +++ b/examples/003/Dockerfile @@ -1,8 +1,9 @@ FROM debian:stable-slim ENV PACKAGES git ruby zstd -RUN apt-get update -y --no-install-recommends $PACKAGES \ +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 \ && rm -fr /opt/db COPY run.sh /run.sh -CMD ['/run.sh'] +ENTRYPOINT ["/run.sh"] diff --git a/examples/003/run.sh b/examples/003/run.sh index db1f294..bf50deb 100644 --- a/examples/003/run.sh +++ b/examples/003/run.sh @@ -1,8 +1,8 @@ #!/bin/sh -set -ex +set -e +echo "[$(date +s)] Inflating /opt/db.tar.zst" tar -xf /opt/db.tar.zst - -cd /opt/db/.index -sh +echo sh "$@" +sh "$@" |
