Skip to content

Commit

Permalink
Remove the redundant --platform=${TARGETPLATFORM} in Dockerfile (#…
Browse files Browse the repository at this point in the history
…1062)

We are getting a warning in the CI saying this is the default, so we
better remove it.
  • Loading branch information
llucax committed Aug 30, 2024
2 parents 4893357 + 63000cf commit 1662711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/containers/test-installation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

ARG PYTHON_VERSION="3.11"

FROM --platform=${TARGETPLATFORM} python:${PYTHON_VERSION}-slim
FROM python:${PYTHON_VERSION}-slim

RUN apt-get update -y && \
apt-get install --no-install-recommends -y \
Expand Down

0 comments on commit 1662711

Please sign in to comment.