Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM node:20
|
2 |
+
RUN git clone https://github.com/Niansuh/GPT4-API.git
|
3 |
+
WORKDIR "GPT4-API"
|
4 |
+
RUN npm i
|
5 |
+
RUN npm run build
|
6 |
+
EXPOSE 7680
|
7 |
+
CMD ["npm", "run", "start"]
|