Spaces:
Running
on
Zero
Running
on
Zero
File size: 216 Bytes
f97dae7 |
1 2 3 4 5 6 7 8 |
FROM python:3.12-slim
WORKDIR /usr/src/app
COPY . .
RUN pip --disable-pip-version-check --no-cache-dir --no-input install -r requirements.txt
ENV GRADIO_SERVER_NAME="0.0.0.0"
EXPOSE 7860
CMD ["python", "src/app.py"]
|