Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jeff86
/
FreeGPT
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
afecfbd
FreeGPT
/
Dockerfile
blfm
Create Dockerfile
afecfbd
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
170 Bytes
FROM
node:
20.9
RUN
git
clone
https://github.com/missuo/FreeGPT35
WORKDIR
"FreeGPT35"
COPY
. .
RUN
npm i
RUN
chmod
-R 777 /FreeGPT35
EXPOSE
3040
CMD
[
"node"
,
"app.js"
]