Spaces:
Running
Running
FROM python:3.12-slim | |
WORKDIR /usr/src/app | |
COPY . . | |
RUN pip install --no-cache-dir -r requirements.txt | |
EXPOSE 8000 | |
ENV GRADIO_SERVER_PORT=8000 | |
ENV GRADIO_SERVER_NAME="0.0.0.0" | |
CMD ["python", "app.py"] |