Skip to content

Commit

Permalink
Add less to the default installed packages. (#57)
Browse files Browse the repository at this point in the history
* Add less to the default installed packages.

* Enable UTF-8 support.
  • Loading branch information
bdice authored Dec 1, 2021
1 parent 39b0398 commit c3b2526
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfiles/rapids.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if [[ "$USE_FISH_SHELL" == "YES" ]]; then \
fi' \
&& apt update \
&& apt install --no-install-recommends -y \
jq ed git vim nano sudo curl wget entr \
jq ed git vim nano sudo curl wget entr less \
# CMake dependencies
curl libssl-dev libcurl4-openssl-dev zlib1g-dev \
# Need tzdata for the pyarrow<->ORC tests
Expand Down
3 changes: 3 additions & 0 deletions etc/rapids/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# Support UTF-8 characters in less
export LESSCHARSET='utf-8'

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
Expand Down

0 comments on commit c3b2526

Please sign in to comment.