Skip to content

Commit f58e87c

Browse files
committed
Fix venv module installation on oraclelinux
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
1 parent 2fde759 commit f58e87c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/Dockerfile.oraclelinux

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ ENV VIRTUALENV_PATH /tmp/venv
88
ENV BUILD_SRC_ROOT /tmp/project
99

1010
# XXX net-tools is actually a Tahoe-LAFS runtime dependency!
11-
RUN yum install --assumeyes \
11+
RUN /bin/bash -c 'yum install --assumeyes \
1212
git \
1313
sudo \
1414
make automake gcc gcc-c++ \
1515
python${PYTHON_VERSION} \
1616
libffi-devel \
1717
openssl-devel \
1818
libyaml \
19-
/usr/bin/virtualenv \
20-
net-tools
19+
python${PYTHON_VERSION%%.*}-virtualenv \
20+
net-tools'
2121

2222
# Get the project source. This is better than it seems. CircleCI will
2323
# *update* this checkout on each job run, saving us more time per-job.

0 commit comments

Comments
 (0)