Spaces:
Runtime error
Runtime error
FROM python:3.11 | |
WORKDIR /api | |
COPY ./ /api/ | |
RUN pip install --upgrade pip | |
RUN pip install poetry | |
RUN poetry install --no-root | |
RUN mkdir /api/cache | |
RUN chmod a+rwx /api/cache | |
EXPOSE 7860 | |
CMD ["python", "main.py"] |