pgbot/Dockerfile

10 lines
153 B
Text
Raw Normal View History

2025-05-06 14:19:54 +03:00
FROM alpine:latest
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
2025-01-31 14:34:34 +02:00
WORKDIR /pgbot
2024-10-19 22:21:22 +03:00
COPY pyproject.toml .
RUN uv sync
2024-10-19 22:21:22 +03:00
2025-01-31 14:23:19 +02:00
COPY . .
2025-05-06 14:19:54 +03:00
CMD uv run ./pgbot