# Use the official Python 3.9 image FROM python:3.9 # Set the working directory to /code WORKDIR /code # Copy the current directory contents into the container at /code COPY ./requirements.txt /code/requirements.txt # Install requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # Set up a new user named "user" with user ID 1000 # RUN useradd -m -u 1000 user # # Switch to the "user" user # USER user # # Set home to the user's home directory # ENV HOME=/home/user \\ # PATH=/home/user/.local/bin:$PATH # # Set the working directory to the user's home directory # WORKDIR $HOME/app # # Copy the current directory contents into the container at $HOME/app setting the owner to the user # COPY --chown=user . $HOME/app # Start the FastAPI app on port 7860, the default port expected by Spaces # CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] # WORKDIR /code # RUN pip install --no-cache-dir gradio==3.27.0 # # Install requirements.txt # RUN pip install --no-cache-dir pip==22.3.1 && pip install --no-cache-dir datasets "huggingface-hub>=0.12.1" "protobuf<4" "click<8.1" # RUN sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/sources.list && sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && sed -i '/security/d' /etc/apt/sources.list && apt-get update && apt-get install -y git git-lfs ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx && rm -rf /var/lib/apt/lists/* && git lfs install # RUN useradd -m -u 1000 user # WORKDIR /home/user/app # COPY ./requirements.txt /home/user/app/requirements.txt # RUN pip install --no-cache-dir --upgrade -r /home/user/app/requirements.txt # # RUN --mount=target=requirements.txt,source=requirements.txt pip install --no-cache-dir -r requirements.txt # # RUN --mount=target=/root/packages.txt,source=packages.txt sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/sources.list && sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && sed -i '/security/d' /etc/apt/sources.list && apt-get update && xargs -r -a /root/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/* # COPY --link --chown=1000 --from=lfs /app /home/user/app # COPY --link --chown=1000 ./ /home/user/app # Set up a new user named "user" with user ID 1000