Fix new installation line in native Dockerfile

This commit is contained in:
murgatroid99 2019-02-08 10:49:13 -08:00
parent 3d4072e806
commit 2b35fcd154
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM debian:jessie
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/backports.list
RUN apt-get update
RUN apt-get -t jessie-backports install cmake
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