neverswing/R1-test
0
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"]