agreg-server/app/consumer/Dockerfile
Alexis Fourmaux 851e8947bc refacto: reorganize folder tree to split lora gateway stack from app
Those stack won't necessarily be on the same host, so they need to be
split
2026-05-08 12:17:03 +02:00

6 lines
No EOL
150 B
Docker

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