-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
26 additions
and
0 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,25 @@ | ||
FROM i386/debian:12 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LC_LANG=.UTF-8 | ||
ENV ARCH=ia32 | ||
ENV CPU=i386 | ||
ENV OS=linux | ||
# For default botan version (2.18.3) | ||
ENV LD_LIBRARY_PATH=/usr/local/lib | ||
|
||
ARG CC=gcc | ||
ARG CXX=g++ | ||
|
||
COPY tools /opt/tools | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install git sudo wget bash software-properties-common pkg-config \ | ||
build-essential gettext libbz2-dev libssl-dev zlib1g-dev \ | ||
python3 python3-venv autoconf automake libtool asciidoctor clang libbotan-2-dev gpg | ||
|
||
RUN /opt/tools/tools.sh ensure_symlink_to_target '/usr/bin/python3' '/usr/bin/python' && \ | ||
/opt/tools/tools.sh install_cmake && \ | ||
/opt/tools/tools.sh build_and_install_jsonc |