Files
TestRedisMongo/worker/Dockerfile
2025-07-16 09:59:56 +00:00

8 lines
148 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "worker.py"]