2025-05-06 14:19:54 +03:00
|
|
|
FROM alpine:latest
|
2025-05-06 14:06:01 +03:00
|
|
|
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
|
|
|
|
2025-05-06 14:06:01 +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
|