forked from uraimo/run-on-arch-action
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request uraimo#144 from LukasWoodtli/gardena/lw/armv6_book…
…worm Add debian bookworm containers
- Loading branch information
Showing
5 changed files
with
20 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM balenalib/rpi-raspbian: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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM 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 |