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