Spaces:
Running
on
T4
Running
on
T4
Update Dockerfile
Browse files- 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
|