From a9985dffdbcc561fb76f14c3b9069085e5b0a57c Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Wed, 27 Mar 2019 10:26:13 -0700 Subject: [PATCH] Slightly different check-valid-until fix --- tools/release/native/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/release/native/Dockerfile b/tools/release/native/Dockerfile index baa7a192..eb9fb098 100644 --- a/tools/release/native/Dockerfile +++ b/tools/release/native/Dockerfile @@ -1,7 +1,8 @@ FROM debian:jessie RUN echo "deb http://archive.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/backports.list -RUN apt-get -o Acquire::Check-Valid-Until=false update +RUN echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf +RUN apt-get update RUN apt-get -t jessie-backports install -y cmake RUN apt-get install -y curl build-essential python libc6-dev-i386 lib32stdc++-4.9-dev jq RUN curl -fsSL get.docker.com | bash