2019-06-10 23:56:41 -07:00
|
|
|
FROM arm64v8/python:3.7.3-alpine
|
2019-01-16 10:00:41 -08:00
|
|
|
|
|
|
|
LABEL maintainers="dirtycajunrice,samwiseg0"
|
|
|
|
|
2019-04-24 09:05:00 -07:00
|
|
|
ENV DEBUG="True"
|
2019-01-16 10:00:41 -08:00
|
|
|
|
2019-01-25 10:34:29 -08:00
|
|
|
WORKDIR /app
|
2019-01-16 10:00:41 -08:00
|
|
|
|
2019-01-25 10:34:29 -08:00
|
|
|
COPY /requirements.txt /Varken.py /app/
|
2019-01-16 10:00:41 -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 && \
|
2019-06-10 23:56:41 -07:00
|
|
|
pip install --no-cache-dir -r /app/requirements.txt
|
2019-01-16 10:00:41 -08:00
|
|
|
|
|
|
|
CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config
|
|
|
|
|
2019-03-11 16:55:04 -07:00
|
|
|
VOLUME /config
|