Varken/Dockerfile

16 lines
304 B
Text
Raw Normal View History

2019-01-16 10:00:41 -08:00
FROM amd64/python:3.7.2-alpine
2018-12-10 18:27:54 -08:00
2019-01-09 14:12:39 -08:00
LABEL maintainers="dirtycajunrice,samwiseg0"
2018-12-10 18:27:54 -08:00
2018-12-12 09:50:35 -08:00
ENV DEBUG="False"
2018-12-10 22:15:38 -08:00
COPY / /app
2018-12-10 22:05:37 -08:00
2019-01-16 10:40:33 -08:00
RUN python3 -m pip install -r /app/requirements.txt
2018-12-10 18:27:54 -08:00
2019-01-02 21:15:12 -08:00
WORKDIR /app
2018-12-10 18:27:54 -08:00
CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config
VOLUME /config