FROM python:alpine WORKDIR / RUN apk add --update --no-cache g++ gcc libxslt-dev COPY requirements.txt . RUN pip install -r requirements.txt ADD . . ENTRYPOINT [ "python", "stats.py" ] # docker buildx build --file docker/stats/Dockerfile --platform linux/arm64,linux/amd64 -t mrkoll .