Merge remote-tracking branch 'origin/master' into release

This commit is contained in:
Kishor Prins 2025-04-30 08:09:26 -07:00
commit c1214b7f8d

View file

@ -30,6 +30,10 @@ WORKDIR /app
# Copy dependency files
COPY --chown=appuser:appuser pyproject.toml ./pyproject.toml
# Install Rust (required to build sudachipy and pyopenjtalk-plus)
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH="/home/appuser/.cargo/bin:$PATH"
# Install dependencies
RUN --mount=type=cache,target=/root/.cache/uv \
uv venv --python 3.10 && \