From cfed054d4efc1fe59faf0a82769c0d21c75207bd Mon Sep 17 00:00:00 2001 From: Flo2410 Date: Fri, 9 Feb 2024 19:01:58 +0000 Subject: [PATCH] Install python requirements in Dockerfile --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3ddd873b..fbc48d6a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -9,6 +9,6 @@ RUN apt-get update \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* -RUN python3 -m pip install pre-commit +RUN python3 -m pip install -r requirements.txt ENV PATH="${PATH}:./node_modules/.bin"