-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add explicit platform for all dockerfiles from the main repos
Following reports at least arm64,ppc64le,s390x have been broken.
- Loading branch information
Showing
24 changed files
with
24 additions
and
24 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 arm64v8/alpine:latest | ||
FROM --platform=linux/arm64 arm64v8/alpine:latest | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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/debian:bookworm | ||
FROM --platform=linux/arm64 arm64v8/debian:bookworm | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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/debian:bullseye | ||
FROM --platform=linux/arm64 arm64v8/debian:bullseye | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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/debian:buster | ||
FROM --platform=linux/arm64 arm64v8/debian:buster | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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/fedora:latest | ||
FROM --platform=linux/arm64 arm64v8/fedora:latest | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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/debian:stretch | ||
FROM --platform=linux/arm64 arm64v8/debian:stretch | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 arm32v7/alpine:latest | ||
FROM --platform=linux/arm/v7 arm32v7/alpine:latest | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 arm32v7/debian:bookworm | ||
FROM --platform=linux/arm/v7 arm32v7/debian:bookworm | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 arm32v7/debian:bullseye | ||
FROM --platform=linux/arm/v7 arm32v7/debian:bullseye | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 arm32v7/debian:buster | ||
FROM --platform=linux/arm/v7 arm32v7/debian:buster | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 arm32v7/debian:jessie | ||
FROM --platform=linux/arm/v7 arm32v7/debian:jessie | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 arm32v7/debian:stretch | ||
FROM --platform=linux/arm/v7 arm32v7/debian:stretch | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 ppc64le/alpine:latest | ||
FROM --platform=linux/ppc64le ppc64le/alpine:latest | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 ppc64le/debian:bookworm | ||
FROM --platform=linux/ppc64le ppc64le/debian:bookworm | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 ppc64le/debian:bullseye | ||
FROM --platform=linux/ppc64le ppc64le/debian:bullseye | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 ppc64le/debian:buster | ||
FROM --platform=linux/ppc64le ppc64le/debian:buster | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 ppc64le/debian:stretch | ||
FROM --platform=linux/ppc64le ppc64le/debian:stretch | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 riscv64/alpine:edge | ||
FROM --platform=linux/riscv64 riscv64/alpine:edge | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 riscv64/alpine:latest | ||
FROM --platform=linux/riscv64 riscv64/alpine:latest | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 s390x/alpine:latest | ||
FROM --platform=linux/s390x s390x/alpine:latest | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 s390x/debian:bookworm | ||
FROM --platform=linux/s390x s390x/debian:bookworm | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 s390x/debian:bullseye | ||
FROM --platform=linux/s390x s390x/debian:bullseye | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 s390x/debian:buster | ||
FROM --platform=linux/s390x s390x/debian:buster | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |
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 s390x/debian:stretch | ||
FROM --platform=linux/s390x s390x/debian:stretch | ||
|
||
COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh | ||
RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh |