downloader: Dockerfile fixes to make it work

pull/15/head
Mike Lang 6 years ago committed by Mike Lang
parent 6c3501db6f
commit 7b10429846

@ -1,5 +1,6 @@
FROM alpine:3.7
RUN apk --update add py2-pip
# dependencies needed for compiling c extensions
RUN apk --update add py2-pip gcc python-dev musl-dev
# Install common lib first as it changes less
COPY common /tmp/common
@ -9,4 +10,4 @@ RUN pip install /tmp/common && rm -r /tmp/common
COPY downloader /tmp/downloader
RUN pip install /tmp/downloader && rm -r /tmp/downloader
ENTRYPOINT python2 -m downloader --base-dir /mnt
ENTRYPOINT ["python2", "-m", "downloader", "--base-dir", "/mnt"]

Loading…
Cancel
Save