Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
clone3
/
Visitor
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c1e857b
Visitor
/
Dockerfile
clone3
Update Dockerfile
dd882b5
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
123 Bytes
FROM
node:
20
-slim
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
server.js .
EXPOSE
3000
CMD
[
"node"
,
"server.js"
]