Update Dockerfile
Browse files- Dockerfile +8 -1
Dockerfile
CHANGED
@@ -1 +1,8 @@
|
|
1 |
-
FROM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM node:18
|
2 |
+
RUN git clone https://github.com/Hk-Gosuto/ChatGPT-Next-Web-LangChain.git
|
3 |
+
WORKDIR "ChatGPT-Next-Web-LangChain"
|
4 |
+
ENV NEXT_PUBLIC_ENABLE_NODEJS_PLUGIN=1
|
5 |
+
RUN yarn install && yarn build
|
6 |
+
|
7 |
+
EXPOSE 3000
|
8 |
+
CMD yarn start
|