summaryrefslogtreecommitdiff
path: root/examples/003/Dockerfile
blob: a7227430b48ed6d1e75c88d2787eebc1d6a4a263 (plain)
1
2
3
4
5
6
7
8
9
FROM debian:stable-slim
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 \
  && rm -fr /opt/db
COPY run.sh /run.sh
ENTRYPOINT ["/run.sh"]