Varken/Dockerfile.arm

21 lines
429 B
Text
Raw Normal View History

2019-01-16 10:00:41 -08:00
FROM arm32v6/python:3.7.2-alpine
LABEL maintainers="dirtycajunrice,samwiseg0"
ENV DEBUG="False"
2019-01-25 10:34:29 -08:00
WORKDIR /app
2019-01-16 10:00:41 -08:00
2019-01-25 10:34:29 -08:00
COPY /qemu-arm-static /usr/bin/qemu-arm-static
2019-01-16 10:00:41 -08:00
2019-01-25 10:34:29 -08:00
COPY /requirements.txt /Varken.py /app/
2019-01-16 10:00:41 -08:00
2019-01-25 10:34:29 -08:00
COPY /varken /app/varken
COPY /data /app/data
RUN python3 -m pip install -r /app/requirements.txt
2019-01-16 10:00:41 -08:00
CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config
VOLUME /config