mirror of
https://github.com/ferdzo/iotDashboard.git
synced 2026-04-05 17:16:26 +00:00
12 lines
185 B
Docker
12 lines
185 B
Docker
FROM ghcr.io/astral-sh/uv:python3.13-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml ./
|
|
|
|
RUN uv sync
|
|
|
|
COPY . .
|
|
|
|
CMD ["uv", "run", "uvicorn","main:app", "--host", "0.0.0.0" ,"--port", "8001"]
|