CoolFace
Apppublic

neverswing/R1-test

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM node:182 3WORKDIR /app4 5RUN apt-get update && apt-get install -y git6 7RUN rm -rf /app/.git8 9RUN git clone https://github.com/HappyYuzu/akash-r1.git /app10 11RUN npm install --omit=dev12 13ENV PORT=786014 15EXPOSE 786016 17CMD ["node", "app.js"]