-
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.
Merge pull request #39 from nebulastream/rocky-deps
Rocky deps
- Loading branch information
Showing
3 changed files
with
48 additions
and
4 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,41 @@ | ||
FROM rockylinux:8.7 | ||
|
||
RUN dnf update -y && dnf install -y \ | ||
git \ | ||
wget \ | ||
python2 \ | ||
epel-release \ | ||
tar \ | ||
curl zip unzip tar \ | ||
pkg-config \ | ||
autoconf \ | ||
flex \ | ||
openssl-devel \ | ||
bison \ | ||
man-pages | ||
|
||
RUN dnf install -y \ | ||
p7zip \ | ||
p7zip-plugins\ | ||
python3 \ | ||
python3-virtualenv | ||
|
||
WORKDIR /tmp | ||
|
||
RUN wget https://github.com/Kitware/CMake/releases/download/v3.21.0/cmake-3.21.0.tar.gz \ | ||
&& tar -xzf cmake-3.21.0.tar.gz \ | ||
&& cd cmake-3.21.0 \ | ||
&& dnf -y install gcc-c++ make \ | ||
&& ./bootstrap \ | ||
&& make \ | ||
&& make install | ||
|
||
WORKDIR /root | ||
|
||
RUN dnf --enablerepo=powertools -y install ninja-build | ||
|
||
RUN dnf groupinstall -y "Development Tools" | ||
|
||
ADD ./entrypoint-build.sh /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
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