From 3af90b6cf8057232274950a6f19b7a6dd9bc8ee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Mielcarek?= Date: Wed, 15 May 2024 23:12:42 +0200 Subject: [PATCH] Fix CI --- web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 1658c1d..c709e6b 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /usr/src/app COPY web/src/package*.json ./web/src/ RUN npm install ./web/src -RUN pip3 install os +RUN apt-get update && apt-get install python3-os COPY web ./web/ COPY common ./common/