You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
404 B

4 years ago
  1. FROM debian:buster-slim
  2. LABEL maintainer="Drew Short <warrick@sothr.com>"
  3. RUN mkdir -p /opt/checker \
  4. /source
  5. VOLUME /source
  6. COPY . /opt/checker
  7. RUN chmod +x /opt/checker/check_movies.sh
  8. RUN apt-get -y update \
  9. && apt-get -y --no-install-recommends install \
  10. bsdmainutils \
  11. ffmpeg \
  12. jq \
  13. util-linux \
  14. && rm -Rf /var/lib/apt/lists/*
  15. WORKDIR /opt/checker