You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by mc...@apache.org on 2021/07/24 16:05:52 UTC

[cassandra-builds] 01/02: Fix archived jessie deps

This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-builds.git

commit 1d9d6cc14593254547e351f40ef57d485f46c3fa
Author: Alex Petrov <ol...@gmail.com>
AuthorDate: Thu Jul 22 19:28:39 2021 +0200

    Fix archived jessie deps
---
 docker/jessie-image.docker | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/docker/jessie-image.docker b/docker/jessie-image.docker
index d68e632..1ae10cc 100644
--- a/docker/jessie-image.docker
+++ b/docker/jessie-image.docker
@@ -11,8 +11,11 @@ VOLUME ${DEB_DIST_DIR}
 # configure apt to retry downloads
 RUN echo 'APT::Acquire::Retries "9";' > /etc/apt/apt.conf.d/80-retries
 
+RUN rm /etc/apt/sources.list.d/backports.list
+RUN echo "deb [check-valid-until=no] http://archive.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/backports.list
+
 # install deps
-RUN apt-get update && apt-get -y install \
+RUN apt-get update -o Acquire::Check-Valid-Until=false && apt-get -y install \
    ant \
    build-essential \
    curl \

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org