Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dylanebert
/
3d-arena
like
215
Running
App
Files
Files
Community
3
c99cc8d
3d-arena
/
Dockerfile
dylanebert
HF staff
initial leaderboard iteration
31a2d08
7 months ago
raw
Copy download link
history
blame
Safe
143 Bytes
FROM
node:alpine
WORKDIR
/app
COPY
package.json package.json
RUN
npm install
COPY
/ /app
RUN
npm run build
EXPOSE
3000
CMD
[
"npm"
,
"start"
]