FROM python:3.12-slim WORKDIR /app COPY . . RUN pip install -r requirement.txt EXPOSE 1600 CMD [ "gunicorn", "main:app", "--bind", "0.0.0.0:1600" ]