From 99122f8d94227fa1e593579195e50373fd62b95a Mon Sep 17 00:00:00 2001 From: Yifan Zhao <yifanz16@illinois.edu> Date: Sun, 28 Mar 2021 09:39:46 -0500 Subject: [PATCH] Added libboost as a requirement --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 398f94d393..be6d1e0985 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ ARG IMAGE_NAME=nvidia/cuda FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04 -# Install dependencies: python 3.6, curl, git -RUN apt-get update && apt-get install -y --no-install-recommends python3 curl git +# Install dependencies: python 3.6, curl, git, libboost +RUN apt-get update && apt-get install -y --no-install-recommends python3 curl git libboost-dev # Install cmake RUN curl -L https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0-linux-x86_64.sh -o cmake.sh && \ -- GitLab