FROM python:3.12 RUN pip install poetry WORKDIR /app COPY . . RUN poetry install EXPOSE 7860 CMD ["poetry", "run", "python", "-m", "interface.py"]