camenduru commited on
Commit
3238f77
·
verified ·
1 Parent(s): c299b3e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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