asr24/StoryCraftAI
3
1FROM python:3.12-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011 12CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]1FROM python:3.12-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011 12CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]