Spaces:
Running
Running
FROM python:3.9 | |
WORKDIR /code | |
COPY ./requirements.txt /code/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
COPY . . | |
RUN pip install -r /code/requirements.txt | |
RUN chmod +x start.sh | |
RUN sed -i 's/\r$//' start.sh | |
CMD ["bash","start.sh"] |