mirror of
https://github.com/logos-messaging/logos-messaging-simulator.git
synced 2026-07-09 17:50:07 +00:00
15 lines
217 B
Docker
15 lines
217 B
Docker
FROM python:3.9-slim
|
|
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml uv.lock ./
|
|
|
|
RUN uv sync --frozen --no-install-project
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["uv", "run", "traffic.py"]
|
|
|