File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -245,4 +245,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
245245
246246## Versions
247247
248+ * ** 29.11.21:** - Create ` .profile ` and ` .bashrc ` for the user.
249+ * ** 29.11.21:** - Release ` insiders ` tag.
248250* ** 28.11.21:** - Initial Release.
Original file line number Diff line number Diff line change @@ -59,4 +59,6 @@ app_setup_block: |
5959
6060# changelog
6161changelogs :
62+ - { date: "29.11.21:", desc: "Create `.profile` and `.bashrc` for the user." }
63+ - { date: "29.11.21:", desc: "Release `insiders` tag." }
6264 - { date: "28.11.21:", desc: "Initial Release." }
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ if [ -n "${SUDO_PASSWORD}" ] || [ -n "${SUDO_PASSWORD_HASH}" ]; then
1717 fi
1818fi
1919
20+ [[ ! -f /config/.bashrc ]] && \
21+ cp /root/.bashrc /config/.bashrc
22+ [[ ! -f /config/.profile ]] && \
23+ cp /root/.profile /config/.profile
24+
2025# permissions
2126if [ -f "/usr/bin/find" ] && [ -f "/usr/bin/xargs" ]; then
2227 CORES=$(nproc --all)
You can’t perform that action at this time.
0 commit comments