Spaces:
Running
Running
File size: 682 Bytes
77f3eaf 748e8a4 564556f e6b0ff7 564556f e6b0ff7 57a6dce 564556f 748e8a4 974ec25 2f7a0cd 1c20b6e 89d4f0b cd33363 790299e f51ea2c cd33363 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
FROM python:3.12
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code/app
RUN --mount=type=secret, id=HF_TOKEN, required=true && \
cat /run/secrets/HF_TOKEN > /tmp/HF_TOKEN && \
huggingface-cli login --token "$(cat /run/secrets/HF_TOKEN)" --add-to-git-credential
RUN useradd -m -u 1000 user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
USER user
EXPOSE 7860
# Login to Hugging Face at runtime & Start app
CMD streamlit run app.py \
--server.headless true \
--server.enableCORS false \
--server.enableXsrfProtection false \
--server.fileWatcherType none |