Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MatterhornMatters
/
demo
like
0
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
demo
/
Dockerfile
kevinloffler
update port
94a108e
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
146 Bytes
FROM
node:
18
-alpine
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
ENV
HOST=
0.0
.
0.0
ENV
PORT=
7860
EXPOSE
7860
CMD
[
"npm"
,
"start"
]