summaryrefslogtreecommitdiff
path: root/examples/003/Dockerfile
blob: 35b83ea242c3bf59f7f2f306ef85bbbed5f42c27 (plain)
1
2
3
4
5
6
7
8
FROM debian:stable-slim
ENV PACKAGES git ruby zstd
RUN apt-get update -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']