-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
104 additions
and
39 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
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,27 @@ | ||
FROM debian:12.0 | ||
|
||
USER root | ||
RUN echo root:1234 | chpasswd | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
build-essential binutils lsb-release make git libssl-dev openssh-server wget && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN wget "https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2-linux-x86_64.sh" -O cmake.sh && \ | ||
chmod +x cmake.sh && \ | ||
./cmake.sh --skip-license --prefix=/usr/local && \ | ||
rm ./cmake.sh | ||
|
||
RUN apt-get update && \ | ||
apt-get purge -y \ | ||
wget && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN git clone https://github.com/cmakelib/cmakelib.git /cmakelib | ||
RUN echo "export CMLIB_DIR=/cmakelib" >> /root/.bashrc | ||
|
||
RUN sed -ri 's/#?PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config | ||
RUN mkdir -p /run/sshd | ||
|
||
ENTRYPOINT ["/usr/sbin/sshd", "-D", "-o", "ListenAddress=0.0.0.0"] |
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 |
---|---|---|
|
@@ -31,7 +31,8 @@ | |
"ImageNames": [ | ||
"ubuntu2004", | ||
"debian11", | ||
"ubuntu2204" | ||
"ubuntu2204", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -31,7 +31,8 @@ | |
"ImageNames": [ | ||
"ubuntu2004", | ||
"debian11", | ||
"ubuntu2204" | ||
"ubuntu2204", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2004", | ||
"ubuntu2204", | ||
"fleet-os-2", | ||
"debian11" | ||
"debian11", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2004", | ||
"ubuntu2204", | ||
"fleet-os-2", | ||
"debian11" | ||
"debian11", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2", | ||
"ubuntu2204" | ||
"ubuntu2204", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2", | ||
"ubuntu2204" | ||
"ubuntu2204", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -37,7 +37,8 @@ | |
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2", | ||
"ubuntu2204" | ||
"ubuntu2204", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -37,7 +37,8 @@ | |
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2", | ||
"ubuntu2204" | ||
"ubuntu2204", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2004", | ||
"ubuntu2204", | ||
"fleet-os-2", | ||
"debian11" | ||
"debian11", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2004", | ||
"ubuntu2204", | ||
"fleet-os-2", | ||
"debian11" | ||
"debian11", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -27,7 +27,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -27,7 +27,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -32,7 +32,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -32,7 +32,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -34,7 +34,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -34,7 +34,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"debian12", | ||
"fleet-os-2" | ||
] | ||
} | ||
|
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 |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"debian12", | ||
"fleet-os-2" | ||
] | ||
} | ||
|
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"ubuntu2204", | ||
"ubuntu2004", | ||
"debian11", | ||
"fleet-os-2" | ||
"fleet-os-2", | ||
"debian12" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -32,7 +32,8 @@ | |
"ImageNames": [ | ||
"ubuntu2004", | ||
"debian11", | ||
"ubuntu2204" | ||
"ubuntu2204", | ||
"debian12" | ||
] | ||
} | ||
} |
Oops, something went wrong.