-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add ubuntu 24.04 image to the foundry
Signed-off-by: Roman Gershman <[email protected]>
- Loading branch information
Showing
5 changed files
with
70 additions
and
23 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
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
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,15 @@ | ||
FROM ubuntu:24.04 | ||
|
||
LABEL org.opencontainers.image.source https://github.com/romange/container-foundry | ||
|
||
COPY ./get_mold.sh ./install_boost.sh /tmp/ | ||
|
||
# To avoid tzdata reconfigure | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt update && apt install -y autoconf-archive bison cmake curl gdb git libssl-dev \ | ||
libunwind-dev libfl-dev ninja-build libtool \ | ||
libboost-context-dev libxml2-dev zip ccache \ | ||
debhelper moreutils pip jq lsof lcov libflatbuffers-dev wget \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN /tmp/get_mold.sh && /tmp/install_boost.sh --asan --ucontext |