Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dylanebert
/
3d-arena
like
220
Running
App
Files
Files
Community
4
bdef08e
3d-arena
/
Dockerfile
dylanebert
HF staff
.
3e6e6e9
over 1 year ago
raw
Copy download link
history
blame
Safe
154 Bytes
FROM
oven/bun
WORKDIR
/app
COPY
viewer/package.json package.json
RUN
bun install
COPY
viewer/ /app
RUN
bun run build
EXPOSE
3000
CMD
[
"bun"
,
"./build"
]