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...
3e6e6e9
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"
]