blob: f875871a2884f270fda2c747816cc7f72b30e5c4 (
plain)
1
2
3
4
5
6
7
8
|
FROM debian:stable-slim
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get install -y git
RUN apt-get install -y ruby
RUN apt-get install -y zstd
RUN git clone --verbose https://github.com/spandx/cache.git /opt/db
WORKDIR /opt
|