Rockk08's picture
Update Dockerfile
a5fb848
raw
history blame
705 Bytes
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"]