Spaces:
Paused
Paused
File size: 572 Bytes
7e408b9 e2eb91d 7e408b9 e2eb91d 7e408b9 | 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 | FROM python:3.10
RUN useradd -m -u 1000 user
ENV HOME=/home/user
ENV PATH=/home/user/.local/bin:$PATH
USER user
WORKDIR $HOME/app
RUN pip install --no-cache-dir apscheduler
RUN pip install --no-cache-dir requests
RUN pip install --no-cache-dir uvicorn
RUN pip install --no-cache-dir fastapi
RUN pip install --no-cache-dir pillow
RUN pip install --no-cache-dir jinja2
RUN pip install --no-cache-dir gdown
RUN --mount=type=secret,id=URL,mode=0444,required=true \
git clone $(cat /run/secrets/URL) .
COPY --chown=user . $HOME/app
CMD ["python", "backend/main.py"] |