Skip to content

Commit

Permalink
Revert "Bugfix: Missing pytest-celery installation in built-in Celery…
Browse files Browse the repository at this point in the history
… worker …" (#222)

This reverts commit 14e2567.
  • Loading branch information
Nusnus authored Feb 28, 2024
1 parent 209e658 commit b9051e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pytest_celery/vendors/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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=""
Expand All @@ -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
Expand Down

0 comments on commit b9051e6

Please sign in to comment.