-
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
1 changed file
with
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This Dockerfile must be run from source root | ||
FROM almalinux:latest | ||
|
||
RUN dnf install -y dnf-plugins-core | ||
# Install dependencies | ||
RUN dnf -y update && \ | ||
dnf groupinstall -y "Development Tools" && \ | ||
dnf clean all && \ | ||
dnf config-manager --set-enabled crb && \ | ||
dnf install -y epel-release && \ | ||
dnf install -y \ | ||
swig \ | ||
rpm-build \ | ||
rpmdevtools \ | ||
jansson-devel \ | ||
libpng-devel \ | ||
pcre-devel \ | ||
wget \ | ||
libyaml-devel \ | ||
libcurl-devel \ | ||
libjpeg-turbo-devel \ | ||
libxml2-devel \ | ||
cronie \ | ||
logrotate \ | ||
fribidi-devel \ | ||
cairo-devel \ | ||
cmake \ | ||
harfbuzz-devel \ | ||
fcgi-devel \ | ||
proj \ | ||
proj-devel \ | ||
geos \ | ||
geos-devel \ | ||
python3-numpy \ | ||
python3-devel \ | ||
protobuf-c-devel && \ | ||
dnf clean all | ||
|
||
WORKDIR /tmp | ||
RUN rpmdev-setuptree | ||
# Need to copy SPEC file |