Dockerfile 269 B

1234567891011121314
  1. FROM debian:stable-slim
  2. LABEL \
  3. maintainer="Davide Alberani <da@mimante.net>"
  4. RUN \
  5. apt-get update && \
  6. apt-get -y --no-install-recommends install \
  7. polygen && \
  8. rm -rf /var/lib/apt/lists/*
  9. COPY tap.grm cry-a-lot /
  10. RUN chmod +x /cry-a-lot
  11. CMD [ "/cry-a-lot" ]