Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
dodd869
/
keything
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
keything
/
Dockerfile
dodd869
Update Dockerfile
e240661
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
114 Bytes
FROM
node:
20
-alpine
WORKDIR
/app
COPY
package*.json ./
RUN
npm i
COPY
srv.js .
EXPOSE
7860
CMD
[
"node"
,
"srv.js"
]