-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicit specify the platform for Docker files (#258)
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
1 parent
0e9c440
commit c2962b7
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|