From 7aa4248b12574a44000f3187fdc46f26ddfb8c85 Mon Sep 17 00:00:00 2001 From: tmaeno Date: Mon, 5 Aug 2024 14:21:54 +0200 Subject: [PATCH] cleanup --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f9390b97e..a98201632 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,14 +44,11 @@ COPY . . # install panda-common first to prevent panda-client from installing redundant files RUN /opt/panda/bin/pip install --no-cache-dir panda-common -RUN /opt/panda/bin/pip install --no-cache-dir .[postgres] +RUN /opt/panda/bin/pip install --no-cache-dir .[postgres,oracle] RUN /opt/panda/bin/pip install --no-cache-dir rucio-clients RUN /opt/panda/bin/pip install --no-cache-dir "git+https://github.com/PanDAWMS/panda-cacheschedconfig.git" RUN ln -s /opt/panda/lib/python*/site-packages/mod_wsgi/server/mod_wsgi*.so /etc/httpd/modules/mod_wsgi.so -# install the oracle client to be able to support Oracle -RUN /opt/panda/bin/pip install --no-cache-dir oracledb - # install Oracle Instant Client and tnsnames.ora RUN wget https://download.oracle.com/otn_software/linux/instantclient/oracle-instantclient-basic-linuxx64.rpm -P /tmp/ && \ yum install /tmp/oracle-instantclient-basic-linuxx64.rpm -y && \