FROM python:latest COPY . /app WORKDIR /app RUN pip install -r requirements.txt ENTRYPOINT [ "uvicorn" ] CMD [ "app.main:app", "--host", "0.0.0.0" ]