diff --git a/.github/workflows/test-ci-dc-2-d.yaml b/.github/workflows/test-ci-dc-2-d.yaml index e0595496b..ed1dc8371 100644 --- a/.github/workflows/test-ci-dc-2-d.yaml +++ b/.github/workflows/test-ci-dc-2-d.yaml @@ -239,7 +239,7 @@ jobs: oc -n ${{ env.TOOLS_NAMESPACE }} start-build tfrs-notification-server-${{ env.BUILD_SUFFIX }} --wait=true deploy: - name: Deploy on Dev + name: Deploy on Test runs-on: ubuntu-latest timeout-minutes: 60 # needs: [get-version] diff --git a/openshift-v4/templates/celery/Dockerfile b/openshift-v4/templates/celery/Dockerfile index b303b6d63..db531ace0 100644 --- a/openshift-v4/templates/celery/Dockerfile +++ b/openshift-v4/templates/celery/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update \ WORKDIR /app/tfrs COPY . . COPY ./security-scan/scan-handler/celery.conf /etc/supervisor/conf.d -RUN pip install --upgrade pip \ +RUN pip install --upgrade pip==24.0 \ && pip install -r backend/requirements.txt \ && chgrp -R root /var/log/supervisor \ && chmod -R g+w /var/log/supervisor \