Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
KBYKB
/
t1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
t1
/
Dockerfile
KBYKB
Upload Dockerfile
cd10292
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
109 Bytes
FROM
node:
21
WORKDIR
/usr/src/app
COPY
package*.json ./
RUN
npm install
COPY
. .
CMD
[
"node"
,
"index.js"
]