Spaces:
Running
Running
File size: 650 Bytes
f79b85a 46866a3 f53fb95 f79b85a 1a95607 ec3f95c f79b85a 796dc92 f79b85a |
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 |
FROM python:3.10
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
WORKDIR /code
COPY --link --chown=1000 . .
RUN mkdir -p /tmp/cache/
RUN chmod a+rwx -R /tmp/cache/
ENV TRANSFORMERS_CACHE=/tmp/cache/
# RUN apt-get update && apt-get install -y libgl1
ENV HF_HOME=/home/user/huggingface
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1 GRADIO_ALLOW_FLAGGING=never GRADIO_NUM_PORTS=1 GRADIO_SERVER_NAME=0.0.0.0 GRADIO_SERVER_PORT=7860 SYSTEM=spaces
CMD ["python", "space.py"]
|