thoughts-and-prayers/Dockerfile

15 lines
269 B
Text
Raw Normal View History

2018-11-08 20:09:41 +01:00
FROM debian:stable-slim
LABEL \
maintainer="Davide Alberani <da@mimante.net>"
RUN \
apt-get update && \
apt-get -y --no-install-recommends install \
polygen && \
rm -rf /var/lib/apt/lists/*
COPY tap.grm cry-a-lot /
RUN chmod +x /cry-a-lot
CMD [ "/cry-a-lot" ]