Varken/Dockerfile

16 lines
304 B
Text
Raw Normal View History

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