2019-04-04 18:28:04 +00:00
|
|
|
ARG TAG
|
|
|
|
FROM debian:${TAG}
|
2019-04-03 18:41:50 +00:00
|
|
|
|
2019-04-04 15:26:10 +00:00
|
|
|
ENV WHEELHOUSE_PATH /tmp/wheelhouse
|
|
|
|
ENV VIRTUALENV_PATH /tmp/venv
|
2019-04-04 16:38:48 +00:00
|
|
|
# This will get updated by the CircleCI checkout step.
|
|
|
|
ENV BUILD_SRC_ROOT /tmp/project
|
2019-04-04 15:26:10 +00:00
|
|
|
|
2019-04-03 18:41:50 +00:00
|
|
|
RUN apt-get --quiet update && \
|
|
|
|
apt-get --quiet --yes install git && \
|
|
|
|
apt-get --quiet --yes install \
|
|
|
|
sudo \
|
|
|
|
build-essential \
|
|
|
|
python2.7 \
|
|
|
|
python2.7-dev \
|
|
|
|
libffi-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libyaml-dev \
|
|
|
|
virtualenv
|
2019-04-04 15:26:10 +00:00
|
|
|
|
|
|
|
# Get the project source. Copying in the whole project source here isn't very
|
|
|
|
# cache friendly but there's no Docker layer cache on CircleCI anyway!
|
|
|
|
COPY . ${BUILD_SRC_ROOT}
|
|
|
|
|
2019-04-04 16:50:05 +00:00
|
|
|
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}"
|