FROM python:3.10 RUN pip install fastapi uvicorn WORKDIR /app COPY server.py /app/ ENTRYPOINT ["python3", "server.py"]