Varken/Dockerfile

21 lines
415 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"
2019-01-25 10:34:29 -08:00
WORKDIR /app
2018-12-10 22:05:37 -08:00
2019-01-25 10:34:29 -08:00
COPY /requirements.txt /Varken.py /app/
2018-12-10 18:27:54 -08:00
2019-01-25 10:34:29 -08:00
COPY /varken /app/varken
COPY /data /app/data
2019-03-11 16:55:04 -07:00
RUN apk add --no-cache tzdata && \
python3 -m pip install -r /app/requirements.txt
2019-01-02 21:15:12 -08:00
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