Skip to content

Commit

Permalink
Explicit specify the platform for Docker files (#258)
Browse files Browse the repository at this point in the history
Motivation:

We should explicit specify the platform we use for docker to ensure our
build produce the correct artifacts

Modifications:

Add --platform=linux/amd64 to docker files

Result:

Ensure build produces correct artifacts
  • Loading branch information
normanmaurer authored Nov 11, 2024
1 parent 0e9c440 commit c2962b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.centos6
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM centos:6.10
FROM --platform=linux/amd64 centos:6.10

ENV MAVEN_VERSION 3.9.1

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.centos7
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM centos:7.6.1810
FROM --platform=linux/amd64 centos:7.6.1810

ARG gcc_version=10.2-2020.11
ENV GCC_VERSION $gcc_version
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.centos7arm64v8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm64v8/centos:7.6.1810
FROM --platform=linux/amd64 arm64v8/centos:7.6.1810

ENV MAVEN_VERSION 3.9.1

Expand Down

0 comments on commit c2962b7

Please sign in to comment.