FROM python:3.10 #Set up a new user named "user" with user ID 1000 RUN useradd -m -u 1000 user # Switch to the "user" user USER user RUN chmod a+rwx -R /home/user/ # Set home to the user's home directory ENV HOME=/home/user PATH=/home/user/.local/bin:$PATH WORKDIR /code COPY --link --chown=1000 . . RUN mkdir -p /tmp/cache/ RUN chmod a+rwx -R /tmp/cache/ ENV HF_HUB_CACHE=HF_HOME RUN pip install --no-cache-dir -r requirements.txt ENV PYTHONUNBUFFERED=1 PORT=7860 CMD ["python", "dist/main.py"]