Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +21 -0
Dockerfile
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.04
|
2 |
+
WORKDIR /content
|
3 |
+
ENV PATH="/home/camenduru/.local/bin:${PATH}"
|
4 |
+
RUN adduser --disabled-password --gecos '' camenduru && \
|
5 |
+
adduser camenduru sudo && \
|
6 |
+
echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers && \
|
7 |
+
chown -R camenduru:camenduru /content && \
|
8 |
+
chmod -R 777 /content && \
|
9 |
+
chown -R camenduru:camenduru /home && \
|
10 |
+
chmod -R 777 /home
|
11 |
+
|
12 |
+
RUN apt update -y && add-apt-repository -y ppa:git-core/ppa && apt update -y && apt install -y aria2 git git-lfs unzip ffmpeg
|
13 |
+
|
14 |
+
USER camenduru
|
15 |
+
|
16 |
+
RUN pip install -q opencv-python imageio imageio-ffmpeg ffmpeg-python av runpod \
|
17 |
+
stable-audio-tools==0.0.16
|
18 |
+
|
19 |
+
COPY ./worker_runpod.py /content/worker_runpod.py
|
20 |
+
WORKDIR /content
|
21 |
+
CMD python worker_runpod.py
|