fffiloni commited on
Commit
f21f318
1 Parent(s): cb8e31c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,8 +4,8 @@ FROM pytorch/pytorch:1.9.0-cuda11.1-cudnn8-runtime
4
  # Install Git and OpenGL libraries, and libglib2.0
5
  RUN apt-get update && apt-get install -y git libgl1-mesa-glx libglib2.0-0
6
 
7
- # Install necessary dependencies, including CMake
8
- RUN apt-get update && apt-get install -y unzip ffmpeg cmake
9
 
10
  # Set up a new user named "user" with user ID 1000
11
  RUN useradd -m -u 1000 user
 
4
  # Install Git and OpenGL libraries, and libglib2.0
5
  RUN apt-get update && apt-get install -y git libgl1-mesa-glx libglib2.0-0
6
 
7
+ # Install necessary dependencies, including CMake, a C++ compiler, and others
8
+ RUN apt-get update && apt-get install -y unzip ffmpeg cmake g++ build-essential
9
 
10
  # Set up a new user named "user" with user ID 1000
11
  RUN useradd -m -u 1000 user