omrahm commited on
Commit
a09a0c0
·
verified ·
1 Parent(s): bcba878

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -1,12 +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" ]
 
1
+ FROM node
2
 
3
  RUN apt-get update && \
4
  apt-get install -y git
5
 
6
+ RUN git clone https://github.com/gcui-art/suno-api.git /app
7
 
8
  WORKDIR /app
9
 
10
+ RUN npm install
11
 
12
+ CMD [ "next", "dev", "-p", "7860" ]