Use new solution for jessie-backports

This commit is contained in:
murgatroid99 2019-03-26 16:59:17 -07:00
parent 33674bc826
commit 7cc18fe40d
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
FROM debian:jessie
RUN echo "deb [check-valid-until=no] http://archive.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/backports.list
RUN apt-get update
RUN apt-get -t jessie-backports install -y cmake
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 apt-get -t jessie-backports -o Acquire::Check-Valid-Until=false 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