This commit is contained in:
Jean-Paul Calderone 2020-07-17 16:45:10 -04:00
parent 95050fefd6
commit 704f751b06
No known key found for this signature in database
GPG Key ID: 86E6F8BAE797C287

View File

@ -9,16 +9,16 @@ ENV BUILD_SRC_ROOT /tmp/project
RUN apt-get --quiet update && \ RUN apt-get --quiet update && \
apt-get --quiet --yes install \ apt-get --quiet --yes install \
git \ git \
lsb-release \ lsb-release \
sudo \ sudo \
build-essential \ build-essential \
python${PYTHON_VERSION} \ python${PYTHON_VERSION} \
python${PYTHON_VERSION}-dev \ python${PYTHON_VERSION}-dev \
libffi-dev \ libffi-dev \
libssl-dev \ libssl-dev \
libyaml-dev \ libyaml-dev \
virtualenv virtualenv
# Get the project source. This is better than it seems. CircleCI will # Get the project source. This is better than it seems. CircleCI will
# *update* this checkout on each job run, saving us more time per-job. # *update* this checkout on each job run, saving us more time per-job.