Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dylanebert
/
3d-arena
like
221
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
0244d91
3d-arena
/
Dockerfile
dylanebert
HF staff
.
0244d91
over 1 year ago
raw
Copy download link
history
blame
Safe
161 Bytes
FROM
oven/bun
WORKDIR
/app
COPY
viewer/package.json package.json
RUN
bun install
COPY
viewer/ /app
RUN
bun run build
EXPOSE
7860
ENTRYPOINT
[
"bun"
,
"./build"
]