FROM python:3.12-slim
WORKDIR /app
COPY srv.py /app
RUN chmod +x /app/srv.py
CMD ["python", "/app/srv.py"]
