File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ FROM ubuntu:${UBUNTU_VERSION}
66ARG DEBIAN_FRONTEND=noninteractive
77ENV LANGUAGE=en_US.UTF-8
88ENV LANG=en_US.UTF-8
9+ ENV LC_ALL=en_US.UTF-8
910
1011ARG INSTALL_TORCH
1112ARG LLVM_VERSION
@@ -70,8 +71,8 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
7071# Config files
7172COPY data/vimrc.local /etc/vim/vimrc.local
7273COPY data/env_setup.sh ${ENV_SETUP_FILE}
73- COPY data/.inputrc data/.bashrc data/.tmux.conf /root/
74- COPY data/.inputrc data/.bashrc data/.tmux.conf /etc/skel/
74+ COPY data/.inputrc data/.bashrc data/.bash_profile data/. tmux.conf /root/
75+ COPY data/.inputrc data/.bashrc data/.bash_profile data/. tmux.conf /etc/skel/
7576
7677# Install uv
7778RUN curl -LsSf https://astral.sh/uv/install.sh | \
Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
7070# Config files
7171COPY data/vimrc.local /etc/vim/vimrc.local
7272COPY data/env_setup.sh ${ENV_SETUP_FILE}
73- COPY data/.inputrc data/.bashrc data/.tmux.conf /root/
74- COPY data/.inputrc data/.bashrc data/.tmux.conf /etc/skel/
73+ COPY data/.inputrc data/.bashrc data/.tmux.conf data/.bash_profile /root/
74+ COPY data/.inputrc data/.bashrc data/.tmux.conf data/.bash_profile /etc/skel/
7575
7676# Install uv
7777RUN curl -LsSf https://astral.sh/uv/install.sh | \
Original file line number Diff line number Diff line change 1+ if [ -f ~ /.bashrc ]; then
2+ source ~ /.bashrc
3+ fi
Original file line number Diff line number Diff line change @@ -20,7 +20,11 @@ FILE_NAME="$( basename -- "${BASH_SOURCE[0]}" )"
2020FILE_PATH=" $FILE_DIR /$FILE_NAME "
2121
2222echo " [ENV-SETUP] Sourcing ${FILE_PATH} "
23- echo " \$ {ENV_SETUP_FILE}: ${ENV_SETUP_FILE:- <not set>} "
23+ echo " Current \$ {ENV_SETUP_FILE}: ${ENV_SETUP_FILE:- <not set>} "
24+
25+ export LANG=en_US.UTF-8
26+ export LC_ALL=en_US.UTF-8
27+ echo " [ENV-SETUP] Setting LANG to ${LANG} , LC_ALL to ${LC_ALL} "
2428
2529# @brief Add `$1` into environment variable `$2` if it is not already there.
2630# @example > env_load PATH /usr/local/bin
Original file line number Diff line number Diff line change 1- IMAGE_VERSION=2.4.6
1+ IMAGE_VERSION=2.4.7
22CUDA_VERSION=12.8.0
33UBUNTU_VERSION=24.04
44LLVM_VERSION=20
You can’t perform that action at this time.
0 commit comments