Files
linumiq_net-docker/bandwidth-worker/Dockerfile
T
2026-05-29 17:12:19 +02:00

9 lines
163 B
Docker

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