We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f1fa340 + 83325b7 commit 2c7e1e8Copy full SHA for 2c7e1e8
docker/cpu/Dockerfile
@@ -30,6 +30,10 @@ WORKDIR /app
30
# Copy dependency files
31
COPY --chown=appuser:appuser pyproject.toml ./pyproject.toml
32
33
+# Install Rust (required to build sudachipy and pyopenjtalk-plus)
34
+RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
35
+ENV PATH="/home/appuser/.cargo/bin:$PATH"
36
+
37
# Install dependencies
38
RUN --mount=type=cache,target=/root/.cache/uv \
39
uv venv --python 3.10 && \
0 commit comments