Spaces:
Sleeping
Sleeping
File size: 546 Bytes
03a8026 5da7847 9623a6f 5da7847 9623a6f 5da7847 9623a6f 5da7847 9623a6f 03a8026 5da7847 03a8026 5da7847 03a8026 579fc35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
FROM python:3.9
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . .
USER root
RUN chmod 777 ~/app/*
USER user
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |