Varken/Dockerfile.arm

21 lines
420 B
Text
Raw Normal View History

FROM arm32v6/python:3.7.3-alpine
2019-01-16 10:00:41 -08:00
LABEL maintainers="dirtycajunrice,samwiseg0"
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 && \
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