omrahm commited on
Commit
4ea709c
·
verified ·
1 Parent(s): dab1872

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python
2
+
3
+ RUN apt-get update && \
4
+ apt-get install -y git
5
+
6
+ RUN git clone https://github.com/SunoAI-API/Suno-API.git /app
7
+
8
+ WORKDIR /app
9
+
10
+ RUN pip install -r requirements.txt
11
+
12
+ CMD [ "uvicorn main:app", "--port", "7860" ]