Skip to content

Commit

Permalink
[40] Build SMTP Integration For Threats Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
azenna committed Sep 14, 2023
1 parent a8d91d3 commit ad52979
Show file tree
Hide file tree
Showing 13 changed files with 538 additions and 42 deletions.
5 changes: 3 additions & 2 deletions .cross/aarch64-unknown-linux-gnu.Dockerfile
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
5 changes: 3 additions & 2 deletions .cross/aarch64-unknown-linux-musl.Dockerfile
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
5 changes: 3 additions & 2 deletions .cross/riscv64gc-unknown-linux-gnu.Dockerfile
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
2 changes: 1 addition & 1 deletion .cross/x86_64-unknown-linux-gnu.Dockerfile
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
2 changes: 1 addition & 1 deletion .cross/x86_64-unknown-linux-musl.Dockerfile
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
Loading

0 comments on commit ad52979

Please sign in to comment.