Spaces:
Sleeping
Sleeping
ngoctuanai
commited on
Commit
•
900bd5f
1
Parent(s):
e3b56de
Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM node:18
|
2 |
+
RUN git clone https://github.com/chokiproai/chatgpt.git
|
3 |
+
WORKDIR "chatgpt"
|
4 |
+
RUN npm i
|
5 |
+
RUN npm run build
|
6 |
+
EXPOSE 3000
|
7 |
+
CMD ["npm", "run", "start"]
|