Spaces:
Running
Running
MVPilgrim
commited on
Commit
·
1a4823d
1
Parent(s):
ce318b6
install
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
@@ -28,11 +28,11 @@ RUN ./custom_prerequisites.py
|
|
28 |
# Stage 2: Final image
|
29 |
FROM nvidia/cuda:12.6.0-cudnn-runtime-ubuntu24.04 as final
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
|
37 |
# Copy Python environment from builder stage
|
38 |
COPY --from=builder /usr/local /usr/local
|
|
|
28 |
# Stage 2: Final image
|
29 |
FROM nvidia/cuda:12.6.0-cudnn-runtime-ubuntu24.04 as final
|
30 |
|
31 |
+
RUN apt-get update && apt-get install -y \
|
32 |
+
wget \
|
33 |
+
curl \
|
34 |
+
unzip \
|
35 |
+
&& rm -rf /var/lib/apt/lists/*
|
36 |
|
37 |
# Copy Python environment from builder stage
|
38 |
COPY --from=builder /usr/local /usr/local
|