Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Corin1998
/
sales
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
sales
/
frontend
/
Dockerfile
Corin1998
Create Dockerfile
4af582a
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
161 Bytes
FROM
node:
20
-slim
WORKDIR
/app
COPY
package.json package-lock.json* ./
RUN
npm install
COPY
. .
EXPOSE
5173
CMD
[
"npm"
,
"run"
,
"dev"
,
"--"
,
"--host"
,
"0.0.0.0"
]