Spaces:
Running
Running
File size: 705 Bytes
c086a66 018827e d66de2b 990a43a c086a66 1a60dce c086a66 e747f8e 1a60dce a5fb848 0cd6d77 a5fb848 4c0adba 1a60dce |
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.10.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN apt-get update && \
apt-get install -y python3 python3-pip libgl1-mesa-glx && \
rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
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
RUN --mount=type=secret,id=FIREBASE_KEY,mode=0444,required=true \
git config --global init.defaultBranch main && \
git init && \
git remote add origin $(cat /run/secrets/FIREBASE_KEY)
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |