|
1 |
| -FROM nvidia/cuda:12.4.0-devel-ubuntu22.04 |
| 1 | +FROM nvidia/cuda:12.8.0-devel-ubuntu24.04 |
2 | 2 |
|
3 | 3 | # Update package lists and install system dependencies
|
4 | 4 | RUN apt-get update && apt-get install -y \
|
5 | 5 | curl \
|
| 6 | + wget \ |
6 | 7 | git \
|
7 | 8 | clang-format \
|
8 |
| - libibverbs-dev \ |
9 |
| - librdmacm-dev \ |
10 |
| - rdma-core \ |
11 |
| - libnuma-dev \ |
| 9 | + clangd-19 \ |
12 | 10 | vim \
|
13 |
| - openmpi-bin \ |
14 |
| - libopenmpi-dev \ |
15 | 11 | zsh \
|
16 | 12 | && rm -rf /var/lib/apt/lists/*
|
17 | 13 |
|
18 | 14 | # Install oh-my-zsh
|
19 | 15 | RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended
|
20 | 16 |
|
21 |
| -# Install powerlevel10k theme |
22 |
| -RUN git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k |
23 |
| - |
24 | 17 | # Install zsh-autosuggestions
|
25 | 18 | RUN git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
26 | 19 |
|
27 | 20 | # Configure zsh
|
28 |
| -RUN sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="powerlevel10k\/powerlevel10k"/' ~/.zshrc && \ |
| 21 | +RUN sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="fino-time"/' ~/.zshrc && \ |
29 | 22 | sed -i 's/plugins=(git)/plugins=(git zsh-autosuggestions)/' ~/.zshrc
|
30 | 23 |
|
31 | 24 | # Create a non-root user
|
@@ -53,6 +46,21 @@ RUN cp -r /root/.oh-my-zsh /home/$USERNAME/.oh-my-zsh && \
|
53 | 46 | USER $USERNAME
|
54 | 47 | WORKDIR /home/$USERNAME
|
55 | 48 |
|
| 49 | +# Install python |
| 50 | +COPY install/install_python.sh /install/install_python.sh |
| 51 | +RUN bash /install/install_python.sh py312 |
| 52 | + |
| 53 | +# clangd |
| 54 | +ENV PATH="/usr/lib/llvm-19/bin:$PATH" |
| 55 | +# conda |
| 56 | +ENV PATH="/home/devuser/conda/bin:$PATH" |
| 57 | +ENV PATH="/home/devuser/envs/py312/bin:$PATH" |
| 58 | + |
| 59 | +# Install python packages |
| 60 | +COPY install/install_python_packages.sh /install/install_python_packages.sh |
| 61 | +RUN bash /install/install_python_packages.sh |
| 62 | +RUN echo "source activate py312" >> /home/devuser/.zshrc |
| 63 | + |
56 | 64 | # Set zsh as default shell
|
57 | 65 | ENV SHELL=/bin/zsh
|
58 | 66 | CMD [ "zsh" ]
|
0 commit comments