Skip to content

Commit

Permalink
chore: remove unnecessary flower install
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards committed Feb 26, 2025
1 parent 4bc4137 commit 5fd08a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 0 additions & 4 deletions dev/celery/docker-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ if [[ -n "${UPDATE_REQUIREMENTS_FROM}" ]]; then
pip install --upgrade -r "${reqs_file}"
fi

if [[ "${CELERY_ROLE}" == "flower" ]]; then
pip install --upgrade flower
fi

CELERY_OPTS=( "${CELERY_ROLE}" )
if [[ -n "${CELERY_UID}" ]]; then
# ensure that a user with the necessary UID exists in container
Expand Down
2 changes: 1 addition & 1 deletion dev/mq/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile for RabbitMQ worker
#
ARG RABBITMQ_VERSION=3.11-alpine
ARG RABBITMQ_VERSION=3.13-alpine

FROM rabbitmq:${RABBITMQ_VERSION}
LABEL maintainer="IETF Tools Team <[email protected]>"
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ services:
CELERY_ROLE: worker
UPDATE_REQUIREMENTS_FROM: requirements.txt
DEV_MODE: "yes"
CELERY_UID: "501"
CELERY_GID: "1000"
command:
- '--loglevel=INFO'
depends_on:
Expand Down

0 comments on commit 5fd08a7

Please sign in to comment.