9 lines
153 B
Docker
9 lines
153 B
Docker
FROM alpine:latest
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
WORKDIR /pgbot
|
|
|
|
COPY pyproject.toml .
|
|
RUN uv sync
|
|
|
|
COPY . .
|
|
CMD uv run ./pgbot
|