From a217907c8bd8b1780c2e822254b5809848a7aec9 Mon Sep 17 00:00:00 2001 From: Gustavo Garcia Date: Tue, 16 Sep 2025 11:57:48 +0200 Subject: [PATCH] Update Dockerfile to copy all the python files When you start using this quickstart as skeleton of your project but then starts to grow and split the file in multiple python files you end up having problems because the Dockerfile is not copying all those files and fails when deployed to production. Ideally it should be COPY . . and have a .dockerignore file to exclude some files but that's a bigger change for now. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a556a9e..d53d11d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,4 +13,4 @@ RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --locked --no-install-project --no-dev # Copy the application code -COPY ./bot.py bot.py +COPY ./*.py .