tahoe-lafs/.circleci/Dockerfile.ubuntu

31 lines
1.0 KiB
Docker
Raw Normal View History

2019-04-04 18:26:47 +00:00
ARG TAG
FROM ubuntu:${TAG}
ARG PYTHON_VERSION
2022-02-14 15:57:44 +00:00
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
2019-04-03 19:58:14 +00:00
# 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 \
2019-04-06 15:12:35 +00:00
build-essential \
python${PYTHON_VERSION} \
python${PYTHON_VERSION}-dev \
2019-04-06 15:12:35 +00:00
libffi-dev \
libssl-dev \
libyaml-dev \
virtualenv \
2019-04-06 19:18:38 +00:00
language-pack-en \
2019-04-06 15:12:35 +00:00
iproute2
2019-04-05 12:15:24 +00: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.
COPY . ${BUILD_SRC_ROOT}
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}" "python${PYTHON_VERSION}"