Improved Docker compose files for multi-arch configuration

This commit is contained in:
Keannu Christian Bernasol 2023-09-17 19:24:39 +08:00
parent 557c78d4fc
commit 4161e3f89c
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,7 @@
# Use the official Python 3.11 image
# FROM --platform=arm64 python:3.11.4-bookworm
FROM python:3.11.4-bookworm
ARG BUILDPLATFORM
FROM --platform=${BUILDPLATFORM} python:3.11.4-bookworm
ENV PYTHONBUFFERED 1