Skip to content

Commit 113746a

Browse files
committed
Work around a pyftpdlib version incompatibility on Rocky8 by blocking 2.x
versions.
1 parent 88a28c1 commit 113746a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile.rocky8

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,9 +817,10 @@ RUN if [ "${WITH_PY3}" = "True" ]; then \
817817

818818
# Modules required by grid_ftps
819819
# NOTE: relies on pyOpenSSL and Cryptography from yum/dnf for now
820+
# NOTE: python-3.6 fails with unsupported OpenSSL attribute in pyftpdlib-2.x
820821
RUN pip2 install 'pyftpdlib<2.0'
821822
RUN if [ "${WITH_PY3}" = "True" ]; then \
822-
pip3 install pyftpdlib; \
823+
pip3 install 'pyftpdlib<2.0'; \
823824
fi;
824825

825826
# Modules required by grid_X IO daemons (not available in yum/dnf for python3)

0 commit comments

Comments
 (0)