From eeaa592e9379dd0730478b8d2a357831e0e3e6c0 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:59:02 -0700 Subject: [PATCH] Fixes export --- .github/workflows/ci.yml | 2 +- Dockerfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98309f3f3..056b63b45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -499,7 +499,7 @@ jobs: - name: Generate requirements file run: | - uv export --no-dev --frozen --format requirements-txt + uv export --no-dev --frozen --format requirements-txt | tee requirements.txt - name: Compile messages run: | diff --git a/Dockerfile b/Dockerfile index 48eafbc86..960067e8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -227,7 +227,6 @@ RUN --mount=type=cache,target=/root/.cache/uv,id=pip-cache \ https://github.com/paperless-ngx/builder/releases/download/zxing-${ZXING_VERSION}/zxing_cpp-${ZXING_VERSION}-cp312-cp312-linux_aarch64.whl \ https://github.com/paperless-ngx/builder/releases/download/zxing-${ZXING_VERSION}/zxing_cpp-${ZXING_VERSION}-cp312-cp312-linux_x86_64.whl \ && uv sync --no-progress --frozen --no-dev --no-python-downloads --python-preference system --find-links . \ - && chown -R 1000:1000 . \ && echo "Installing NLTK data" \ && python3 -W ignore::RuntimeWarning -m nltk.downloader -d "/usr/share/nltk_data" snowball_data \ && python3 -W ignore::RuntimeWarning -m nltk.downloader -d "/usr/share/nltk_data" stopwords \