Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anon4
/
hello-world
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fa831df
hello-world
/
Dockerfile
anon4
Update Dockerfile
fa831df
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
207 Bytes
FROM node:
18
# Create app directory
WORKDIR
/usr/
src/app
RUN wget https:
//
huggingface.co
/spaces/
anon4
/hello-world/
raw
/main/
app.js -O ./app.js
RUN npm install express
EXPOSE
7860
CMD [
"node"
,
"./app.js"
]