Skip to content

Commit b9051e6

Browse files
authored
Revert "Bugfix: Missing pytest-celery installation in built-in Celery worker …" (#222)
This reverts commit 14e2567.
1 parent 209e658 commit b9051e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pytest_celery/vendors/worker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM python:3.10-slim-buster
44
RUN adduser --disabled-password --gecos "" test_user
55

66
# Install system dependencies
7-
RUN apt-get update && apt-get install -y build-essential git
7+
RUN apt-get update && apt-get install -y build-essential
88

99
# Set arguments
1010
ARG CELERY_VERSION=""
@@ -23,7 +23,7 @@ ENV PYTHONDONTWRITEBYTECODE=1
2323
RUN pip install --no-cache-dir --upgrade \
2424
pip \
2525
celery[redis,pymemcache]${WORKER_VERSION:+==$WORKER_VERSION} \
26-
git+https://github.com/celery/pytest-celery.git
26+
psutil
2727

2828
# The workdir must be /app
2929
WORKDIR /app

0 commit comments

Comments
 (0)