Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,6 +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 |
|
5 |
# Set up a new user named "user" with user ID 1000
|
6 |
RUN useradd -m -u 1000 user
|
|
|
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 |
# Set up a new user named "user" with user ID 1000
|
8 |
RUN useradd -m -u 1000 user
|