We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b19fd1d + 2c7e1e8 commit c5086c7Copy full SHA for c5086c7
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