mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
31 lines
1.0 KiB
Docker
31 lines
1.0 KiB
Docker
ARG TAG
|
|
FROM ubuntu:${TAG}
|
|
ARG PYTHON_VERSION
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
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
|
|
|
|
# language-pack-en included to support the en_US LANG setting.
|
|
# iproute2 necessary for automatic address detection/assignment.
|
|
RUN apt-get --quiet update && \
|
|
apt-get --quiet --yes install git && \
|
|
apt-get --quiet --yes install \
|
|
sudo \
|
|
build-essential \
|
|
python${PYTHON_VERSION} \
|
|
python${PYTHON_VERSION}-dev \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
libyaml-dev \
|
|
virtualenv \
|
|
language-pack-en \
|
|
iproute2
|
|
|
|
# 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.
|
|
COPY . ${BUILD_SRC_ROOT}
|
|
|
|
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}" "python${PYTHON_VERSION}"
|