From 46d4ae4b06bbcac25ad7818fcc705a80c9b657fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Ce=C5=A1pivo?= Date: Thu, 18 Apr 2024 08:25:09 +0200 Subject: [PATCH] feat: Added support for Azure Service Bus using docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c57511b49..84b30b77a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:alpine RUN apk add --no-cache ca-certificates tzdata && update-ca-certificates # Install the required packages -RUN pip install --no-cache-dir redis flower +RUN pip install --no-cache-dir redis flower azure-identity azure-servicebus # PYTHONUNBUFFERED: Force stdin, stdout and stderr to be totally unbuffered. (equivalent to `python -u`) # PYTHONHASHSEED: Enable hash randomization (equivalent to `python -R`)