Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
steren
/
hello
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
hello
/
Dockerfile
steren
Create Dockerfile
34c528f
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
125 Bytes
FROM
node:
19
WORKDIR
/usr/src/app
COPY
package*.json ./
RUN
npm install --only=production
COPY
. .
CMD
[
"node"
,
"index.js"
]