FROM python:3.10.9-slim WORKDIR /app COPY . . RUN pip install -r requirements.txt CMD ["python", "server.py"]