tahoe-lafs/.circleci/Dockerfile.centos

27 lines
748 B
Docker
Raw Normal View History

2019-04-04 14:24:39 -04:00
ARG TAG
FROM centos:${TAG}
2019-04-04 14:00:19 -04:00
ENV WHEELHOUSE_PATH /tmp/wheelhouse
ENV VIRTUALENV_PATH /tmp/venv
# This will get updated by the CircleCI checkout step.
ENV BUILD_SRC_ROOT /tmp/project
# XXX net-tools is actually a Tahoe-LAFS runtime dependency!
RUN yum install --assumeyes \
git \
sudo \
make automake gcc gcc-c++ \
2020-04-13 10:57:28 -04:00
python2 \
2020-04-13 10:38:52 -04:00
python2-devel \
2019-04-04 14:00:19 -04:00
libffi-devel \
openssl-devel \
libyaml \
2019-04-04 14:00:19 -04:00
/usr/bin/virtualenv \
net-tools
2019-04-05 08:15:24 -04:00
# 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.
2019-04-04 14:00:19 -04:00
COPY . ${BUILD_SRC_ROOT}
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}" "python2.7"