multi-arch attempt 1 (#71)
This commit is contained in:
parent
7ec28e51fc
commit
855816a576
6 changed files with 131 additions and 14 deletions
21
Dockerfile.arm64
Normal file
21
Dockerfile.arm64
Normal file
|
@ -0,0 +1,21 @@
|
|||
FROM arm64v8/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
|
Loading…
Add table
Add a link
Reference in a new issue