Spaces:
Sleeping
Sleeping
FROM python:3.9 | |
WORKDIR /code | |
ENV HTTP_PROXY=http://10.31.255.65:8080 | |
ENV HTTPS_PROXY=http://10.31.255.65:8080 | |
COPY ./requirements.txt /code/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
COPY . . | |
ENTRYPOINT ["sh","./launch.sh"] |