-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[40] Build SMTP Integration For Threats Logging
- Loading branch information
Showing
13 changed files
with
538 additions
and
42 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,6 +1,7 @@ | ||
FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main | ||
RUN ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg && \ | ||
RUN dpkg --add-architecture arm64 && \ | ||
ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg libssl-dev:arm64 && \ | ||
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 16 && \ | ||
ln -s /usr/bin/clang-16 /usr/bin/clang && \ | ||
ln -s /usr/bin/llvm-strip-16 /usr/bin/llvm-strip |
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,6 +1,7 @@ | ||
FROM ghcr.io/cross-rs/aarch64-unknown-linux-musl:main | ||
RUN ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg && \ | ||
RUN dpkg --add-architecture arm64 && \ | ||
ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg libssl-dev:arm64 && \ | ||
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 16 && \ | ||
ln -s /usr/bin/clang-16 /usr/bin/clang && \ | ||
ln -s /usr/bin/llvm-strip-16 /usr/bin/llvm-strip |
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,6 +1,7 @@ | ||
FROM ghcr.io/cross-rs/riscv64gc-unknown-linux-gnu:main | ||
RUN ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg && \ | ||
RUN dpkg --add-architecture riscv64 && \ | ||
ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg libssl-dev:risc64 && \ | ||
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 16 && \ | ||
ln -s /usr/bin/clang-16 /usr/bin/clang && \ | ||
ln -s /usr/bin/llvm-strip-16 /usr/bin/llvm-strip |
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,6 +1,6 @@ | ||
FROM ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main | ||
RUN ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg libssl-dev && \ | ||
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 16 && \ | ||
ln -s /usr/bin/clang-16 /usr/bin/clang && \ | ||
ln -s /usr/bin/llvm-strip-16 /usr/bin/llvm-strip |
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,6 +1,6 @@ | ||
FROM ghcr.io/cross-rs/x86_64-unknown-linux-musl:main | ||
RUN ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime && echo Europe/Rome > /etc/timezone && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg && \ | ||
apt update && apt install -y lsb-release wget software-properties-common gnupg libssl-dev && \ | ||
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 16 && \ | ||
ln -s /usr/bin/clang-16 /usr/bin/clang && \ | ||
ln -s /usr/bin/llvm-strip-16 /usr/bin/llvm-strip |
Oops, something went wrong.