-
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.
feat: add pcre2-dev library to the images
Signed-off-by: Roman Gershman <[email protected]>
- Loading branch information
Showing
9 changed files
with
141 additions
and
73 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
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 was deleted.
Oops, something went wrong.
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,15 +1,16 @@ | ||
FROM ubuntu:24.04 | ||
|
||
LABEL org.opencontainers.image.source https://github.com/romange/container-foundry | ||
LABEL org.opencontainers.image.source="https://github.com/romange/container-foundry" | ||
|
||
COPY ./get_mold.sh ./install_boost.sh /tmp/ | ||
COPY ./get_mold.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 clang \ | ||
libboost-context-dev libxml2-dev zip ccache libzstd-dev \ | ||
|
||
RUN apt update && apt install -y autoconf-archive bison clang cmake curl gdb git libssl-dev \ | ||
libunwind-dev libfl-dev ninja-build libtool \ | ||
libboost-context-dev libpcre2-dev libxml2-dev zip ccache libzstd-dev \ | ||
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 | ||
RUN /tmp/get_mold.sh |