From 2478cadfbe6317db59fb4d7c3f8ed59a16b4f460 Mon Sep 17 00:00:00 2001 From: Yogesh Ojha Date: Fri, 9 Aug 2024 07:52:53 +0530 Subject: [PATCH] use pip3 --- web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index c36ff0c9e..575e43077 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -74,7 +74,7 @@ RUN ARCH=$(dpkg --print-architecture) \ # Install Rust for orjson RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" -RUN pip install maturin +RUN pip3 install maturin # Make directory for app WORKDIR /usr/src/app