Spaces:
Runtime error
Runtime error
File size: 217 Bytes
7fd3f6f 4478465 c1fc2a9 a2c8732 7fd3f6f 6aae1da 7fd3f6f 6545a36 70eb619 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . /app
ENV PYTHONUNBUFFERED=1
EXPOSE 7860
CMD ["sh","-lc","./start.sh"]
|