We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 209e658 commit b9051e6Copy full SHA for b9051e6
src/pytest_celery/vendors/worker/Dockerfile
@@ -4,7 +4,7 @@ FROM python:3.10-slim-buster
4
RUN adduser --disabled-password --gecos "" test_user
5
6
# Install system dependencies
7
-RUN apt-get update && apt-get install -y build-essential git
+RUN apt-get update && apt-get install -y build-essential
8
9
# Set arguments
10
ARG CELERY_VERSION=""
@@ -23,7 +23,7 @@ ENV PYTHONDONTWRITEBYTECODE=1
23
RUN pip install --no-cache-dir --upgrade \
24
pip \
25
celery[redis,pymemcache]${WORKER_VERSION:+==$WORKER_VERSION} \
26
- git+https://github.com/celery/pytest-celery.git
+ psutil
27
28
# The workdir must be /app
29
WORKDIR /app
0 commit comments