From fc03f965ca4ed8fa12f3e663b32e2fe84589ebfc Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Tue, 1 Jan 2019 19:30:16 -0800 Subject: [PATCH] added a Dockerfile for the backfiller --- backfiller/Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 backfiller/Dockerfile diff --git a/backfiller/Dockerfile b/backfiller/Dockerfile new file mode 100644 index 0000000..e85d330 --- /dev/null +++ b/backfiller/Dockerfile @@ -0,0 +1,13 @@ +FROM alpine:3.7 +# dependencies needed for compiling c extensions +RUN apk --update add py2-pip + +# Install common lib first as it changes less +COPY common /tmp/common +RUN pip install /tmp/common && rm -r /tmp/common + +# Install actual application +COPY downloader /tmp/backfiller +RUN pip install /tmp/backfiller && rm -r /tmp/backfiller + +ENTRYPOINT ["python2", "-m", "backfiller", "--base-dir", "/mnt"]