From 30d537e6f3365395bb2f697f71c32486f57bc82a Mon Sep 17 00:00:00 2001 From: Alexander Alemayhu Date: Tue, 18 Jul 2023 22:11:51 +0200 Subject: [PATCH] fix(docker): add pip3 installation with --break-system-packages --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f15ff892b..21ada8e8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN git clone https://github.com/2anki/web /app/web RUN git clone https://github.com/2anki/create_deck /app/create_deck RUN npm --prefix /app/web install -RUN pip3 install -r /app/create_deck/requirements.txt +RUN pip3 install --break-system-packages -r /app/create_deck/requirements.txt RUN npm install typescript -g RUN npm --prefix /app/server install