Skip to content

Commit c3ed0e2

Browse files
committed
fix installation of DB dependencies
1 parent 1df7c9f commit c3ed0e2

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

daemons/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN rpm -i /tmp/oic.rpm; \
2323
RUN pip install --upgrade pip setuptools
2424
RUN rm -rf /usr/lib/python2.7/site-packages/ipaddress*
2525
RUN pip install rucio[oracle,mysql,postgresql] j2cli psycopg2-binary
26+
RUN pip install cx_oracle==6.3.1 PyMySQL
2627

2728
# Install dependecies
2829
RUN yum install -y \

server/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN rpm -i /tmp/oic.rpm; \
2323
RUN pip install --upgrade pip setuptools
2424
RUN rm -rf /usr/lib/python2.7/site-packages/ipaddress*
2525
RUN pip install rucio[oracle,mysql,postgresql] j2cli psycopg2-binary
26+
RUN pip install cx_oracle==6.3.1 PyMySQL
2627

2728
ADD rucio.cfg.j2 /tmp/
2829
ADD rucio.conf.j2 /tmp/

ui/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN pip install --upgrade pip setuptools
2323
RUN rm -rf /usr/lib/python2.7/site-packages/ipaddress*
2424
RUN pip install rucio_webui[oracle,mysql,postgresql] j2cli psycopg2-binary
2525
# only necessary temporarily until setup.py for webui is fixed
26-
RUN pip install cx_oracle==6.3.1 psycopg2>=2.4.2 PyMySQL
26+
RUN pip install cx_oracle==6.3.1 PyMySQL
2727

2828
ADD rucio.cfg.j2 /tmp/
2929
ADD rucio.conf.j2 /tmp/

0 commit comments

Comments
 (0)