From 87a260c523fcf3dfc2ed073f636e07f3c38dfbdc Mon Sep 17 00:00:00 2001 From: Marcin Antas Date: Wed, 3 Apr 2024 18:26:13 +0200 Subject: [PATCH] Add support for multi arch docker image --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1ec26c2..166ca58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,7 @@ -FROM python:3.11-slim +FROM --platform=$BUILDPLATFORM python:3.11-slim WORKDIR /app -RUN apt-get update -RUN pip install --upgrade pip setuptools - COPY requirements.txt . RUN pip3 install -r requirements.txt