17 lines
No EOL
355 B
Text
17 lines
No EOL
355 B
Text
FROM arm32v7/python:3.7.2-slim
|
|
|
|
LABEL maintainers="dirtycajunrice,samwiseg0"
|
|
|
|
ENV DEBUG="False"
|
|
|
|
COPY / /app
|
|
|
|
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
|
|
|
RUN python3 -m pip install -r /app/requirements.txt
|
|
|
|
WORKDIR /app
|
|
|
|
CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config
|
|
|
|
VOLUME /config |