Spaces:
Sleeping
Sleeping
File size: 184 Bytes
8ff5f44 |
1 2 3 4 5 6 7 8 |
from python:3.10.11-slim-bullseye
WORKDIR /app
COPY requirements.txt .
RUN apt-get update && apt-get upgrade -y
RUN pip install -r requirements.txt
RUN cd app
CMD ["gradio", "app.py"]
|