Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
# Use an official PyTorch image with CUDA support as the base image
|
| 2 |
FROM pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime
|
| 3 |
|
| 4 |
-
# Install Git
|
| 5 |
-
RUN apt-get update && apt-get install -y git
|
| 6 |
|
| 7 |
RUN apt-get update && apt-get install -y ninja-build
|
| 8 |
|
|
|
|
| 1 |
# Use an official PyTorch image with CUDA support as the base image
|
| 2 |
FROM pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime
|
| 3 |
|
| 4 |
+
# Install Git and OpenGL libraries
|
| 5 |
+
RUN apt-get update && apt-get install -y git libgl1-mesa-glx
|
| 6 |
|
| 7 |
RUN apt-get update && apt-get install -y ninja-build
|
| 8 |
|