Spaces:
Running
Running
File size: 151 Bytes
72e65af | 1 2 3 4 5 6 7 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"] |