Skip to content

Commit cc2aeb4

Browse files
authoredJun 25, 2024··
Fixed hybrid_setup example build error with legacy.Dockerfile (#331)
1 parent 4534b43 commit cc2aeb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎examples/hybrid_setup/tests/vendors/workers/legacy.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ ENV WORKER_NAME=$CELERY_WORKER_NAME
1616
ENV WORKER_QUEUE=$CELERY_WORKER_QUEUE
1717

1818
# Install packages
19-
RUN pip install --no-cache-dir --upgrade pip
20-
RUN pip install celery==4.4.7 "pytest-celery[all]==1.0.0"
19+
RUN pip install --no-cache-dir --upgrade pip \
20+
celery==4.4.7 "pytest-celery[all]==1.0.0"
2121

2222
# The workdir must be /app
2323
WORKDIR /app

0 commit comments

Comments
 (0)
Please sign in to comment.