Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dtsky
/
nodejs
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
nodejs
/
Dockerfile
dtsky
Update Dockerfile
2209a31
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
138 Bytes
FROM
node:latest
WORKDIR
/code
COPY
./package.json /code/package.json
RUN
npm install
COPY
. .
ENV
PORT
7860
CMD
[
"node"
,
"app.js"
]