Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
baoloan
/
hhh
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
hhh
/
Dockerfile
baoloan
Upload 3 files
2d2837f
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
FROM
node:latest
WORKDIR
/app
COPY
. .
EXPOSE
3000
RUN
apt update -y &&\
chmod
+x index.js &&\
npm install
CMD
[
"node"
,
"index.js"
]