multi-arch attempt 1 (#71)

This commit is contained in:
Nicholas St. Germain 2019-01-16 12:00:41 -06:00
parent 7ec28e51fc
commit 855816a576
6 changed files with 131 additions and 14 deletions

21
Dockerfile.arm Normal file
View file

@ -0,0 +1,21 @@
FROM arm32v6/python:3.7.2-alpine
LABEL maintainers="dirtycajunrice,samwiseg0"
ENV DEBUG="False"
COPY / /app
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
RUN \
python3 -m pip install -r /app/requirements.txt && \
chown -R abc:abc \
/config \
/app
WORKDIR /app
CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config
VOLUME /config