diff --git a/docker/backend.dockerfile b/docker/backend.dockerfile index ddd7778..10ec470 100644 --- a/docker/backend.dockerfile +++ b/docker/backend.dockerfile @@ -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} \