jarvisx17 commited on
Commit
c50d106
1 Parent(s): d59553b

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20
2
+ WORKDIR /code
3
+
4
+ Run git clone https://github.com/jarvisx17/dalle-2.git .
5
+
6
+ COPY . .
7
+
8
+ RUN npm install
9
+ Run npm install -g npm@10.5.2
10
+ RUN npm run build
11
+
12
+
13
+ EXPOSE 7860
14
+ CMD ["npm", "run", "start"]