(backend) add util to extract text from Ydoc content

Documents content is stored in the Ydoc format. We need a util
to extract it as xml/text.
This commit is contained in:
Samuel Paccoud - DINUM
2024-12-27 10:19:16 +01:00
committed by Manuel Raynaud
parent 747ca70186
commit 710bbf512c
7 changed files with 123 additions and 1 deletions

View File

@@ -15,6 +15,13 @@ FROM base AS back-builder
WORKDIR /builder
# Install Rust and Cargo using Alpine's package manager
RUN apk add --no-cache \
build-base \
libffi-dev \
rust \
cargo
# Copy required python dependencies
COPY ./src/backend /builder