From 2e5a20b03180b216976b79bcaf2b6f6d98f52098 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 19 Nov 2024 09:47:15 +0100 Subject: [PATCH] Remove unnecessary --platform flag in Dockerfile This is the default, and we are getting a linter warning about it in the CI which is noisy and not useful. Signed-off-by: Leandro Lucarella --- .github/containers/test-installation/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/containers/test-installation/Dockerfile b/.github/containers/test-installation/Dockerfile index 6ca6142..d5e2399 100644 --- a/.github/containers/test-installation/Dockerfile +++ b/.github/containers/test-installation/Dockerfile @@ -3,7 +3,7 @@ # This Dockerfile is used to test the installation of the python package in # multiple platforms in the CI. It is not used to build the package itself. -FROM --platform=${TARGETPLATFORM} python:3.11-slim +FROM python:3.11-slim RUN apt-get update -y && \ apt-get install --no-install-recommends -y \