Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yuoop/zaiwen2
yuoop
/
zaiwen3
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
zaiwen3
/
Dockerfile
yuoop
Create Dockerfile
1af7085
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
122 Bytes
FROM
node:
18
-slim
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"index.js"
]