Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -2,6 +2,12 @@
|
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
FROM debian:bullseye-slim
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
# Install FFmpeg
|
6 |
RUN apt-get update && \
|
7 |
apt-get install -y python3-pip ffmpeg libcublas-dev
|
|
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
FROM debian:bullseye-slim
|
4 |
|
5 |
+
RUN dpkg --add-architecture amd64
|
6 |
+
apt-get update
|
7 |
+
apt-get install -y --no-install-recommends gnupg2 curl ca-certificates
|
8 |
+
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/7fa2af80.pub
|
9 |
+
"deb https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64 /" | sudo tee /etc/apt/sources.list.d/cuda.list
|
10 |
+
|
11 |
# Install FFmpeg
|
12 |
RUN apt-get update && \
|
13 |
apt-get install -y python3-pip ffmpeg libcublas-dev
|