From 5da1553462a2cf8a703954ed7767a41f5571d4c1 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 27 May 2024 14:44:27 +0200 Subject: [PATCH] remove fancy caching to support gh --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b85619f..cf66fbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /app COPY pyproject.toml poetry.lock ./ RUN touch README.md -RUN --mount=type=cache,target=$POETRY_CACHE_DIR poetry install --no-root +RUN poetry install --no-root ### RUNTIME FROM python:3.12-bookworm as runtime