Install python requirements in Dockerfile

This commit is contained in:
Flo2410 2024-02-09 19:01:58 +00:00
parent a23b35165a
commit f51fe5571b
No known key found for this signature in database
GPG Key ID: 8ECB00AC5216DC7F

View File

@ -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"