Spaces:
Paused
Paused
FROM python:3.9.10 | |
EXPOSE $PORT | |
WORKDIR /app | |
COPY requirements.txt requirements.txt | |
RUN pip install -r requirements.txt | |
COPY /app /app | |
COPY /examples /examples | |
CMD source setup.sh && python /app/app_savta.py |