diff --git a/src/pytest_celery/vendors/worker/Dockerfile b/src/pytest_celery/vendors/worker/Dockerfile index b3781941..4e3f6454 100644 --- a/src/pytest_celery/vendors/worker/Dockerfile +++ b/src/pytest_celery/vendors/worker/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.10-slim-buster RUN adduser --disabled-password --gecos "" test_user # Install system dependencies -RUN apt-get update && apt-get install -y build-essential git +RUN apt-get update && apt-get install -y build-essential # Set arguments ARG CELERY_VERSION="" @@ -23,7 +23,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 RUN pip install --no-cache-dir --upgrade \ pip \ celery[redis,pymemcache]${WORKER_VERSION:+==$WORKER_VERSION} \ - git+https://github.com/celery/pytest-celery.git + psutil # The workdir must be /app WORKDIR /app