Spaces:
Running
Running
FROM python:3.9 | |
ENV Path="/home/user/.local/bin:$PATH" | |
WORKDIR /app | |
COPY ./requirements.txt requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
COPY --chmod=0755 . /app | |
CMD "/app/wrapper.sh" | |