mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-22 06:17:50 +00:00
Apply the various changes to the 3 other Debian-alikes
This commit is contained in:
parent
4d15504e4a
commit
08693e79f8
@ -1,5 +1,10 @@
|
||||
FROM debian:9
|
||||
|
||||
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
|
||||
|
||||
RUN apt-get --quiet update && \
|
||||
apt-get --quiet --yes install git && \
|
||||
apt-get --quiet --yes install \
|
||||
@ -11,3 +16,9 @@ RUN apt-get --quiet update && \
|
||||
libssl-dev \
|
||||
libyaml-dev \
|
||||
virtualenv
|
||||
|
||||
# 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}
|
||||
|
||||
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}"
|
||||
|
@ -1,8 +1,12 @@
|
||||
FROM ubuntu:16.04
|
||||
|
||||
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 \
|
||||
@ -16,3 +20,9 @@ RUN apt-get --quiet update && \
|
||||
virtualenv \
|
||||
language-pack-en \
|
||||
iproute2
|
||||
|
||||
# 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}
|
||||
|
||||
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}"
|
||||
|
@ -1,8 +1,12 @@
|
||||
FROM ubuntu:18.04
|
||||
|
||||
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 \
|
||||
@ -16,3 +20,9 @@ RUN apt-get --quiet update && \
|
||||
virtualenv \
|
||||
language-pack-en \
|
||||
iproute2
|
||||
|
||||
# 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}
|
||||
|
||||
RUN "${BUILD_SRC_ROOT}"/.circleci/prepare-image.sh "${WHEELHOUSE_PATH}" "${VIRTUALENV_PATH}" "${BUILD_SRC_ROOT}"
|
||||
|
Loading…
Reference in New Issue
Block a user