Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lablab-ai-amd-developer-hackathon
/
AndesOps-AI
like
32
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9f7d194
AndesOps-AI
/
frontend
/
Dockerfile
Álvaro Valenzuela Valdes
Initial commit: AndesOps AI Platform Demo Ready
b8e6434
9 days ago
raw
Copy download link
history
blame
Safe
153 Bytes
FROM
node:
20
-slim
WORKDIR
/app
COPY
package.json package-lock.json* ./
RUN
npm install
COPY
. .
CMD
[
"npm"
,
"run"
,
"dev"
,
"--"
,
"--hostname"
,
"0.0.0.0"
]