agreg-server/app/consumer/Dockerfile

6 lines
154 B
Text
Raw Normal View History

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