Move install of python requirements into setup.sh

pull/2878/head
Flo2410 4 months ago
parent f51fe5571b
commit a99474b55c
No known key found for this signature in database
GPG Key ID: 8ECB00AC5216DC7F

@ -9,6 +9,4 @@ RUN apt-get update \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install -r requirements.txt
ENV PATH="${PATH}:./node_modules/.bin"

@ -3,6 +3,8 @@
# Install Node packages
pnpm install
python3 -m pip install -r requirements.txt
# Copy in skeleton configuration if there is no existing configuration
if [ ! -d "config/" ]; then
echo "Adding skeleton config"

Loading…
Cancel
Save