chore(docker): use standalone dockerfiles for multiarch

This commit is contained in:
Robert Kaussow 2020-12-31 13:39:04 +01:00
parent c8ac6b6ea3
commit 8d4e1e71e2
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
3 changed files with 45 additions and 1 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.9-alpine
FROM amd64/python:3.9-alpine
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
org.label-schema.name="ansible-doctor" \

22
docker/Dockerfile.arm Normal file
View File

@ -0,0 +1,22 @@
FROM arm32v7/python:3.9-alpine
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
org.label-schema.name="ansible-doctor" \
org.label-schema.vcs-url="https://github.com/thegeeklab/ansible-doctor" \
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
ENV PY_COLORS=1
ADD dist/ansible_doctor-*.whl /
RUN apk update && \
pip install --upgrade --no-cache-dir pip && \
pip install --no-cache-dir ansible_doctor-*.whl && \
rm -f ansible_doctor-*.whl && \
rm -rf /var/cache/apk/* && \
rm -rf /root/.cache/
USER root
CMD []
ENTRYPOINT ["/usr/local/bin/ansible-doctor"]

22
docker/Dockerfile.arm64 Normal file
View File

@ -0,0 +1,22 @@
FROM arm64v8/python:3.9-alpine
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
org.label-schema.name="ansible-doctor" \
org.label-schema.vcs-url="https://github.com/thegeeklab/ansible-doctor" \
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
ENV PY_COLORS=1
ADD dist/ansible_doctor-*.whl /
RUN apk update && \
pip install --upgrade --no-cache-dir pip && \
pip install --no-cache-dir ansible_doctor-*.whl && \
rm -f ansible_doctor-*.whl && \
rm -rf /var/cache/apk/* && \
rm -rf /root/.cache/
USER root
CMD []
ENTRYPOINT ["/usr/local/bin/ansible-doctor"]