blob: faeeefc484a7836d9d6785a2df6e29c1bae76fd5 (
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
RUN echo 'Done'
|