From 63dbf47f65591d27467380f5639d33204bf249ff Mon Sep 17 00:00:00 2001 From: eneller Date: Thu, 3 Jul 2025 11:20:25 +0200 Subject: [PATCH] fix: missing Dockerfile dependency --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90d9921..b4df69d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,13 +7,14 @@ COPY --from=ghcr.io/astral-sh/uv:0.7.18 /uv /uvx /bin/ WORKDIR /app # Install dependencies +RUN apt-get install -y pandoc 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 --locked --no-install-project + uv sync --locked --no-install-project --no-dev # Copy the project into the image ADD . /app WORKDIR /app/src -CMD ["uv", "run", "gunicorn", "-c", "gunicorn.py"] \ No newline at end of file +CMD ["uv", "run", "gunicorn", "-c", "gunicorn.py"]