fffiloni commited on
Commit
9906713
1 Parent(s): 3c440d3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -1,6 +1,9 @@
1
  # Use an official PyTorch image with CUDA support as the base image
2
  FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
3
 
 
 
 
4
  # Install Git and system libraries required for OpenGL without interactive prompts
5
  ENV DEBIAN_FRONTEND=noninteractive
6
 
 
1
  # Use an official PyTorch image with CUDA support as the base image
2
  FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
3
 
4
+ # Install a specific version of pip (e.g., 20.2.4)
5
+ RUN pip install pip==20.2.4
6
+
7
  # Install Git and system libraries required for OpenGL without interactive prompts
8
  ENV DEBIAN_FRONTEND=noninteractive
9