Spaces:
Running
Running
FROM python:3.9 | |
COPY requirements.txt / | |
RUN pip install -r /requirements.txt | |
WORKDIR /app | |
COPY ./ /app | |
RUN ls /app | |
RUN chmod 777 /app/startup.sh | |
RUN /app/startup.sh | |
CMD flask run --host=0.0.0.0 --port=7860 |