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