CoolFace
Apppublic

omrahm/suno

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM node2 3RUN apt-get update && \4    apt-get install -y git5 6RUN git clone https://github.com/gcui-art/suno-api.git /app7 8RUN chmod -R 777 /app9 10WORKDIR /app11 12RUN --mount=type=secret,id=SUNO_COOKIE,mode=0444,required=true \13    SUNO_COOKIE=$(cat /run/secrets/SUNO_COOKIE)14 15RUN npm install16 17CMD [ "npm", "run", "dev", "--", "-p", "7860" ]