From 3028ecbda47ca68a5572aca58b209e5284624e90 Mon Sep 17 00:00:00 2001 From: Edward Karavakis Date: Thu, 1 Aug 2024 14:11:51 +0200 Subject: [PATCH 1/2] Install oracledb in the docker image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ce5c1c96a..1e29681f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,6 +49,9 @@ 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 + WORKDIR / RUN rm -rf /tmp/src From 44e355e556c9f153ca4d2bc7a725c12d23fe85bb Mon Sep 17 00:00:00 2001 From: Edward Karavakis Date: Thu, 1 Aug 2024 14:12:37 +0200 Subject: [PATCH 2/2] Increase the version --- PandaPkgInfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PandaPkgInfo.py b/PandaPkgInfo.py index 113d3f96b..bd66434c9 100644 --- a/PandaPkgInfo.py +++ b/PandaPkgInfo.py @@ -1 +1 @@ -release_version = "0.3.14" +release_version = "0.3.15