We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fde759 commit f58e87cCopy full SHA for f58e87c
.circleci/Dockerfile.oraclelinux
@@ -8,16 +8,16 @@ ENV VIRTUALENV_PATH /tmp/venv
8
ENV BUILD_SRC_ROOT /tmp/project
9
10
# XXX net-tools is actually a Tahoe-LAFS runtime dependency!
11
-RUN yum install --assumeyes \
+RUN /bin/bash -c 'yum install --assumeyes \
12
git \
13
sudo \
14
make automake gcc gcc-c++ \
15
python${PYTHON_VERSION} \
16
libffi-devel \
17
openssl-devel \
18
libyaml \
19
- /usr/bin/virtualenv \
20
- net-tools
+ python${PYTHON_VERSION%%.*}-virtualenv \
+ net-tools'
21
22
# Get the project source. This is better than it seems. CircleCI will
23
# *update* this checkout on each job run, saving us more time per-job.
0 commit comments