Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dylanebert
/
4DGS-demo
like
97
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
4DGS-demo
/
Dockerfile
dylanebert
HF Staff
.
68fad97
over 1 year ago
raw
Copy download link
history
blame
Safe
147 Bytes
FROM
node:alpine
WORKDIR
/app
COPY
4d/package.json package.json
RUN
npm install
COPY
4d/ /app
RUN
npm run build
EXPOSE
3000
CMD
[
"npm"
,
"start"
]