Spaces:
Runtime error
Runtime error
File size: 134 Bytes
6ad7bf1 |
1 2 3 4 5 |
FROM python:3.10
ADD . /app
WORKDIR /app
RUN pip3 install -r requirements.txt --no-cache-dir
CMD exec gunicorn app:server --bind :7860 |