Spaces:
Paused
Paused
File size: 663 Bytes
c053e7d 4b49578 c88d1aa 4b49578 39eff38 4b49578 c053e7d 42cd2c8 39eff38 c0aa865 39eff38 |
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 |
FROM python:3.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
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
ENV HF_HOME=/data/.huggingface
RUN --mount=type=secret,id=SECRET_KEY,mode=0444,required=true
RUN --mount=type=secret,id=ALGORITHM,mode=0444,required=true
RUN --mount=type=secret,id=SUPERUSER_USERNAME,mode=0444,required=true
RUN --mount=type=secret,id=SUPERUSER_PASSWORD,mode=0444,required=true
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|