agreg-server/server/app/Dockerfile

6 lines
140 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 . .
2026-05-10 12:36:38 +02:00
ENTRYPOINT ["python"]