From a94eeab54a25dd13999db78c68a7c4bef79e93c3 Mon Sep 17 00:00:00 2001 From: Von Random Date: Tue, 6 May 2025 14:19:54 +0300 Subject: [PATCH] try uv with python from uv --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c44d2d..9bd4d70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine3.21 +FROM alpine:latest COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ WORKDIR /pgbot @@ -6,4 +6,4 @@ COPY pyproject.toml . RUN uv sync COPY . . -CMD /pgbot/pgbot +CMD uv run ./pgbot