Added env/ folder to simplify children images; updated Dockerfile to include env/ plus add unzip command

This commit is contained in:
2026-04-24 17:18:04 -05:00
parent 5e2170184c
commit 59e6e3985b
8 changed files with 241 additions and 1 deletions

42
itdominator-base-image/env/.bashrc vendored Normal file
View File

@@ -0,0 +1,42 @@
# Colors
if [ -e $HOME/.bash_colors ]; then
source $HOME/.bash_colors
fi
# Exports Variable Settings
if [ -e $HOME/.bash_exports ]; then
source $HOME/.bash_exports
fi
# Paths
if [ -e $HOME/.bash_paths ]; then
source $HOME/.bash_paths
fi
if [ -e $HOME/.bash_ld_library_path ]; then
source $HOME/.bash_ld_library_path
fi
# Aliases
if [ -e $HOME/.bash_aliases ]; then
source $HOME/.bash_aliases
fi
# Functions
if [ -e $HOME/.bash_functions ]; then
source $HOME/.bash_functions
fi
# Auto complete -- Note: Must have bash-completion package
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
# Terminal look and feel with logo and then custom prompt line
echo "${lightred}Welcome to the dark side of the moon, $(whoami)!${default}"
if [ -e $HOME/.bash_ps1 ]; then
source $HOME/.bash_ps1
fi