Skip to content

Commit

Permalink
fix(docker): pip installation (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
bathienle authored Nov 13, 2024
1 parent 3ff96c4 commit 6a8fb33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/backend.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ ARG GUNICORN_VERSION=20.1.0
ARG SETUPTOOLS_VERSION=59.6.0
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir gunicorn==${GUNICORN_VERSION} && \
pip install --no-cache-dir -r requirements.txt && \
pip install --no-cache-dir setuptools==${SETUPTOOLS_VERSION} && \
pip install --no-cache-dir -r requirements.txt && \
python plugins.py \
--plugin_csv /app/plugins.csv \
--install_path ${PLUGIN_INSTALL_PATH} \
Expand Down

0 comments on commit 6a8fb33

Please sign in to comment.