Commit 3d6f0d6 1 parent fff6f59 commit 3d6f0d6 Copy full SHA for 3d6f0d6
File tree 1 file changed +13
-2
lines changed
horreum-backend/src/main/docker
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
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
2
14
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/
You can’t perform that action at this time.
0 commit comments