-
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
8 changed files
with
91 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM fedora:35 | ||
|
||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LC_LANG=C.UTF-8 | ||
ENV ARCH=x64 | ||
ENV CPU=x86_64 | ||
ENV OS=linux | ||
|
||
ARG CC=gcc | ||
ARG CXX=g++ | ||
|
||
COPY tools /opt/tools | ||
|
||
RUN dnf -y update && \ | ||
dnf -y install sudo wget git openssl-devel bison byacc cmake python \ | ||
json-c-devel clang gcc gcc-c++ make autoconf libtool gzip bzip2 bzip2-devel \ | ||
gettext-devel ncurses-devel zlib-devel asciidoctor botan2 botan2-devel | ||
|
||
RUN /opt/tools/tools.sh build_and_install_automake |
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,24 @@ | ||
FROM fedora:36 | ||
|
||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LC_LANG=C.UTF-8 | ||
ENV ARCH=x64 | ||
ENV CPU=x86_64 | ||
ENV OS=linux | ||
ENV LD_LIBRARY_PATH=/opt/botan/3.1.1/lib | ||
|
||
ARG CC=gcc | ||
ARG CXX=g++ | ||
|
||
COPY tools /opt/tools | ||
|
||
RUN dnf -y update && \ | ||
dnf -y install sudo wget git openssl-devel bison byacc cmake python \ | ||
json-c-devel clang gcc gcc-c++ make autoconf libtool gzip bzip2 bzip2-devel \ | ||
gettext-devel ncurses-devel zlib-devel asciidoctor botan2 botan2-devel | ||
|
||
RUN /opt/tools/tools.sh build_and_install_libiconv && \ | ||
/opt/tools/tools.sh build_and_install_gpg lts && \ | ||
/opt/tools/tools.sh build_and_install_gpg stable && \ | ||
/opt/tools/tools.sh build_and_install_botan 3.1.1 |
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