Rockk08's picture
Update Dockerfile
aca6c54
raw
history blame
688 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=SECRET_EXAMPLE,mode=0444,required=true \
apt-get install -y git && \
git init && \
git remote add origin $(cat /run/secrets/SECRET_EXAMPLE)
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]