Spaces:
Running
Running
FROM python:3.9 | |
WORKDIR /code | |
COPY requirements.txt . | |
RUN pip install -r requirements.txt | |
COPY . . | |
RUN python setup.py | |
CMD ["python", "app.py"] |