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"
|
|
|
|
|
2019-01-25 12:34:29 -06:00
|
|
|
WORKDIR /app
|
2018-12-11 00:05:37 -06:00
|
|
|
|
2019-01-25 12:34:29 -06:00
|
|
|
COPY /requirements.txt /Varken.py /app/
|
2018-12-10 20:27:54 -06:00
|
|
|
|
2019-01-25 12:34:29 -06:00
|
|
|
COPY /varken /app/varken
|
|
|
|
|
|
|
|
COPY /data /app/data
|
|
|
|
|
2019-03-11 19:55:04 -04:00
|
|
|
RUN apk add --no-cache tzdata && \
|
|
|
|
python3 -m pip install -r /app/requirements.txt
|
2019-01-02 23:15:12 -06:00
|
|
|
|
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
|
|
|
|
|
2018-12-12 12:38:58 -05:00
|
|
|
VOLUME /config
|