FROM python:3.14.5-slim-trixie
WORKDIR /app
RUN pip install --no-cache-dir flask==3.1.3
COPY server.py .
CMD ["python", "server.py"]
