From cd7f29e9a73008c672cc3fc0e1fcf54cc24d9374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Sun, 22 Dec 2024 05:37:19 +0100 Subject: [PATCH] Remove mention of uv.lock --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 465c68c..25ef614 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,12 +7,11 @@ WORKDIR /app # Install dependencies RUN --mount=type=cache,target=/root/.cache/uv \ - --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \ uv sync --frozen --no-install-project # Copy the project into the image -ADD main.py misc.py pyproject.toml uv.lock /app/ +ADD main.py misc.py pyproject.toml /app/ # Sync the project RUN --mount=type=cache,target=/root/.cache/uv \