From f795fe37c80f4fd9fc8b4137a990fa3da56d7063 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Mon, 30 Jun 2025 10:05:26 -0700 Subject: [PATCH] Fix Dockerfile COPY line The destination needs to have a trailing slash if it's a directory in older versions of docker, this is fixed Signed-off-by: Alek Ratzloff --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0911c26..29be553 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ FROM "python:3.13" STOPSIGNAL SIGINT RUN mkdir /app WORKDIR /app -COPY ./pyproject.toml ./uv.lock . +COPY ./pyproject.toml ./uv.lock ./ RUN pip3 install uv CMD uv run --no-group dev python3 -m omnibot