Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingyoyoyo
/
node
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
node
/
Dockerfile
YYou3
update port
15702cf
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
127 Bytes
FROM
node:lts-alpine
WORKDIR
"/app"
COPY
./ ./
RUN
npm i
EXPOSE
7860
ENTRYPOINT
[
"node"
]
CMD
[
"./index.ts"
,
"--port"
,
"7860"
]