Spaces:
Paused
Paused
FROM python:3.9-slim | |
USER root | |
WORKDIR /app | |
COPY . /app | |
RUN apt-get update && apt-get install -y supervisor | |
RUN pip install -r requirements.txt | |
EXPOSE 8080 7860 | |
CMD ["supervisord", "-n"] |