Spaces:
Running
Running
File size: 222 Bytes
4fb0ad8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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"
|