Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
reon314
/
nextchat
like
0
Sleeping
App
Files
Files
Community
b5feb53
nextchat
/
Dockerfile
dongsiqie
Create Dockerfile
f4a28dc
verified
7 months ago
raw
Copy download link
history
blame
Safe
170 Bytes
FROM
node:
18
RUN
git
clone
https://github.com/Yidadaa/ChatGPT-Next-Web.git
WORKDIR
"ChatGPT-Next-Web"
RUN
npm i
RUN
npm run build
EXPOSE
3000
CMD
[
"npm"
,
"run"
,
"start"
]