top001 commited on
Commit
06e14a4
·
verified ·
1 Parent(s): 2a89b2c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y git
6
+
7
+ RUN rm -rf /app/.git
8
+
9
+ RUN git clone https://github.com/HappyYuzu/akash-r1.git /app
10
+
11
+ RUN npm install --omit=dev
12
+
13
+ ENV PORT=7860
14
+
15
+ EXPOSE 7860
16
+
17
+ CMD ["node", "app.js"]