Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
dylanebert/3d-arena
jt5d
/
3d-arena
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c724c12
3d-arena
/
Dockerfile
dylanebert
HF Staff
handle splat viewer resize
70a459f
over 1 year ago
raw
Copy download link
history
blame
Safe
155 Bytes
FROM
node:alpine
WORKDIR
/app
COPY
viewer/package.json package.json
RUN
npm install
COPY
viewer/ /app
RUN
npm run build
EXPOSE
3000
CMD
[
"npm"
,
"start"
]