source: trunk/.circleci/Dockerfile.pypy

Last change on this file was f89ad00, checked in by Sajith Sasidharan <sajith@…>, at 2020-04-14T20:14:07Z

Use 2.7-buster Docker image for pypy

Fix failing PyPy? CI job.

Fixes: ticket:3299

  • Property mode set to 100644
File size: 694 bytes
Line 
1FROM pypy:2.7-buster
2
3ENV WHEELHOUSE_PATH /tmp/wheelhouse
4ENV VIRTUALENV_PATH /tmp/venv
5# This will get updated by the CircleCI checkout step.
6ENV BUILD_SRC_ROOT /tmp/project
7
8RUN apt-get --quiet update && \
9    apt-get --quiet --yes install \
10        git \
11        lsb-release \
12        sudo \
13        build-essential \
14        libffi-dev \
15        libssl-dev \
16        libyaml-dev \
17        virtualenv
18
19# Get the project source.  This is better than it seems.  CircleCI will
20# *update* this checkout on each job run, saving us more time per-job.
21COPY . ${BUILD_SRC_ROOT}
22
23RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}" "pypy"
Note: See TracBrowser for help on using the repository browser.