@@ -8,17 +8,21 @@ ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
88
99ENV PATH="${UV_INSTALL_DIR}:${PATH}"
1010
11- RUN export DEBIAN_FRONTEND=noninteractive && \
12- apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub && \
13- apt-get update --fix-missing && \
14- apt-get upgrade -y && \
15- ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime && \
16- apt-get install -y tzdata && \
17- dpkg-reconfigure --frontend noninteractive tzdata && \
18- apt-get install -y bzip2 ca-certificates curl build-essential git libglib2.0-0 libsm6 libxext6 libxrender1 mercurial openssh-server subversion wget \
19- libibverbs1 ibverbs-providers ibverbs-utils libibverbs-dev infiniband-diags && \
20- sed -i "s/.*PasswordAuthentication.*/PasswordAuthentication no/g" /etc/ssh/sshd_config && mkdir /run/sshd && \
21- mkdir ~/.ssh && chmod 700 ~/.ssh && touch ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys && rm /etc/ssh/ssh_host_*
11+ RUN export DEBIAN_FRONTEND=noninteractive \
12+ && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub \
13+ && apt-get update --fix-missing \
14+ && apt-get upgrade -y \
15+ && ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime \
16+ && apt-get install -y tzdata \
17+ && dpkg-reconfigure --frontend noninteractive tzdata \
18+ && apt-get install -y bzip2 ca-certificates curl build-essential git libglib2.0-0 libsm6 libxext6 libxrender1 mercurial openssh-server subversion wget \
19+ libibverbs1 ibverbs-providers ibverbs-utils libibverbs-dev infiniband-diags \
20+ && rm -rf /var/lib/apt/lists/* \
21+ && sed -i "s/.*PasswordAuthentication.*/PasswordAuthentication no/g" /etc/ssh/sshd_config \
22+ && mkdir /run/sshd \
23+ && mkdir ~/.ssh && chmod 700 ~/.ssh && touch ~/.ssh/authorized_keys \
24+ && chmod 600 ~/.ssh/authorized_keys \
25+ && rm /etc/ssh/ssh_host_*
2226
23- RUN curl -LsSf https://astral.sh/uv/install.sh | INSTALLER_NO_MODIFY_PATH=1 sh && \
24- uv python install --preview --default
27+ RUN curl -LsSf https://astral.sh/uv/install.sh | INSTALLER_NO_MODIFY_PATH=1 sh \
28+ && uv python install --preview --default
0 commit comments