Skip to content

Commit 4b0113d

Browse files
committed
Remove the redundant --platform from the Dockerfile
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent b8d08b3 commit 4b0113d

File tree

9 files changed

+19
-7
lines changed
  • .github/containers/test-installation
  • cookiecutter
  • tests_golden/integration/test_cookiecutter_generation
    • actor/frequenz-actor-test/.github/containers/test-installation
    • api/frequenz-api-test/.github/containers/test-installation
    • app/frequenz-app-test/.github/containers/test-installation
    • lib/frequenz-test-python/.github/containers/test-installation
    • model/frequenz-model-test/.github/containers/test-installation

9 files changed

+19
-7
lines changed

.github/containers/test-installation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This Dockerfile is used to test the installation of the python package in
55
# multiple platforms in the CI. It is not used to build the package itself.
66

7-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
7+
FROM python:3.11-slim
88

99
RUN apt-get update -y && \
1010
apt-get install --no-install-recommends -y \

RELEASE_NOTES.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* Added a new default option `asyncio_default_fixture_loop_scope = "function"` for `pytest-asyncio` as not providing a value is deprecated.
2929
* The migration script is now written in Python, so it should be (hopefully) more compatible with different OSes.
3030
* Disable more `pylint` checks that are also checked by `mypy` to avoid false positives.
31+
* Remove the redundant `--platform` from the testing dockerfile.
3132

3233
## Bug Fixes
3334

cookiecutter/migrate.py

+11
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,17 @@ def main() -> None:
166166

167167
# Add new pylint checks
168168
add_pylint_checks()
169+
print("=" * 72)
170+
171+
# Remove redundant --platform from the dockerfile
172+
dockerfile = Path(".github/containers/test-installation/Dockerfile")
173+
print(f"{dockerfile}: Removing redundant --platform.")
174+
if dockerfile.is_file():
175+
replace_file_contents_atomically(
176+
dockerfile, "--platform=${TARGETPLATFORM} ", ""
177+
)
178+
else:
179+
print(f"{dockerfile}: Not found.")
169180

170181
# Add a separation line like this one after each migration step.
171182
print("=" * 72)

cookiecutter/{{cookiecutter.github_repo_name}}/.github/containers/test-installation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This Dockerfile is used to test the installation of the python package in
66
# multiple platforms in the CI. It is not used to build the package itself.
77

8-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
8+
FROM python:3.11-slim
99

1010
RUN apt-get update -y && \
1111
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/actor/frequenz-actor-test/.github/containers/test-installation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/api/frequenz-api-test/.github/containers/test-installation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/app/frequenz-app-test/.github/containers/test-installation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/lib/frequenz-test-python/.github/containers/test-installation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/model/frequenz-model-test/.github/containers/test-installation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

0 commit comments

Comments
 (0)