Spaces:
Paused
Paused
alessandro trinca tornidor
commited on
Commit
·
30b3c03
1
Parent(s):
df001cb
[feat] add missing python packages
Browse files- Dockerfile +10 -0
Dockerfile
CHANGED
@@ -1,5 +1,15 @@
|
|
1 |
FROM nvidia/cuda:12.0.0-cudnn8-devel-ubuntu22.04
|
|
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
WORKDIR /workspace
|
4 |
|
5 |
COPY scripts/entrypoint.sh /workspace/entrypoint.sh
|
|
|
1 |
FROM nvidia/cuda:12.0.0-cudnn8-devel-ubuntu22.04
|
2 |
+
ARG DEBIAN_FRONTEND=noninteractive
|
3 |
|
4 |
+
ENV PYTHONUNBUFFERED=1
|
5 |
+
|
6 |
+
RUN apt-get update && apt-get install --no-install-recommends -y \
|
7 |
+
build-essential \
|
8 |
+
python3.11 \
|
9 |
+
python3-pip \
|
10 |
+
git \
|
11 |
+
ffmpeg \
|
12 |
+
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
13 |
WORKDIR /workspace
|
14 |
|
15 |
COPY scripts/entrypoint.sh /workspace/entrypoint.sh
|