Skip to content

Commit 3d6f0d6

Browse files
committed
Fix base image for release
1 parent fff6f59 commit 3d6f0d6

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
FROM registry.access.redhat.com/ubi9/openjdk-17
2+
USER root
3+
#Install python packages to run Hunter
4+
RUN INSTALL_PKGS="python3 python3-devel python3-setuptools python3-pip python3-pip nss_wrapper \
5+
httpd httpd-devel mod_ssl mod_auth_gssapi mod_ldap \
6+
mod_session atlas-devel gcc-gfortran libffi-devel libtool-ltdl \
7+
enchant krb5-devel git" && \
8+
microdnf -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \
9+
rpm -V $INSTALL_PKGS && \
10+
rpm -e --nodeps redhat-logos-httpd && \
11+
microdnf -y clean all --enablerepo='*'
12+
USER 1001
13+
RUN pip install git+https://github.com/datastax-labs/hunter
214
COPY src/main/resources/horreum.sh /deployments/
3-
COPY src/main/resources/k8s-setup.sh /deployments/
4-
RUN pipx install git+ssh://[email protected]/datastax-labs/hunter
15+
COPY src/main/resources/k8s-setup.sh /deployments/

0 commit comments

Comments
 (0)