FROM python:3.11-slim

WORKDIR /app

COPY server.py /app/server.py

ENV PYTHONUNBUFFERED=1

EXPOSE 5000

CMD ["python", "/app/server.py"]
