Spaces:
Paused
Paused
| FROM nvidia/cuda:11.3.1-base-ubuntu20.04 | |
| ENV DEBIAN_FRONTEND=noninteractive \ | |
| TZ=Europe/Paris | |
| # Install some basic utilities | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| curl \ | |
| ca-certificates \ | |
| sudo \ | |
| git \ | |
| wget \ | |
| procps \ | |
| git-lfs \ | |
| zip \ | |
| unzip \ | |
| htop \ | |
| vim \ | |
| nano \ | |
| bzip2 \ | |
| libx11-6 \ | |
| build-essential \ | |
| libsndfile-dev \ | |
| software-properties-common \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN add-apt-repository ppa:flexiondotorg/nvtop && \ | |
| apt-get update && \ | |
| apt-get upgrade -y && \ | |
| apt-get install -y --no-install-recommends nvtop | |
| RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ | |
| apt-get install -y nodejs && \ | |
| npm install -g configurable-http-proxy | |
| # Create a working directory | |
| WORKDIR /app | |
| # Set password for root user | |
| RUN echo "root:137955" | chpasswd | |
| # Ensure the directories exist and set the correct permissions | |
| RUN mkdir -p /root/.cache /root/.config \ | |
| && chmod -R 777 /root | |
| # Set up the Conda environment | |
| ENV CONDA_AUTO_UPDATE_CONDA=false \ | |
| PATH=/root/miniconda/bin:$PATH | |
| RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh \ | |
| && chmod +x ~/miniconda.sh \ | |
| && ~/miniconda.sh -b -p ~/miniconda \ | |
| && rm ~/miniconda.sh \ | |
| && conda clean -ya | |
| WORKDIR /root/app | |
| # User Debian packages | |
| ## Security warning: Potential user code executed as root (build time) | |
| RUN --mount=target=/root/packages.txt,source=packages.txt \ | |
| apt-get update && \ | |
| xargs -r -a /root/packages.txt apt-get install -y --no-install-recommends \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN --mount=target=/root/on_startup.sh,source=on_startup.sh,readwrite \ | |
| bash /root/on_startup.sh | |
| RUN mkdir /data && chown root:root /data | |
| # Python packages | |
| RUN --mount=target=requirements.txt,source=requirements.txt \ | |
| pip install --no-cache-dir --upgrade -r requirements.txt | |
| # Copy the current directory contents into the container at /root/app setting the owner to root | |
| COPY --chown=root . /root/app | |
| RUN chmod +x start_server.sh | |
| COPY --chown=root login.html /root/miniconda/lib/python3.9/site-packages/jupyter_server/templates/login.html | |
| ENV PYTHONUNBUFFERED=1 \ | |
| GRADIO_ALLOW_FLAGGING=never \ | |
| GRADIO_NUM_PORTS=1 \ | |
| GRADIO_SERVER_NAME=0.0.0.0 \ | |
| GRADIO_THEME=huggingface \ | |
| SYSTEM=spaces \ | |
| SHELL=/bin/bash | |
| CMD bash -c './start_server.sh; echo "Your Using my Config Right nowww!!"' | |