diff --git a/entrypoint-devpod.sh b/entrypoint-devpod.sh index 246c8fa..e164ec3 100644 --- a/entrypoint-devpod.sh +++ b/entrypoint-devpod.sh @@ -12,6 +12,15 @@ if [ -n "$SSH_AUTHORIZED_KEYS" ]; then chmod 600 /root/.ssh/authorized_keys fi +# Bootstrap home dir on fresh PVC +if [ ! -f /root/.bashrc ]; then + cp /etc/skel/.bashrc /root/.bashrc 2>/dev/null || cat > /root/.bashrc <<'EOF' +export PATH="/root/.bun/bin:$PATH" +export HISTFILE=/root/.bash_history +export HISTSIZE=10000 +EOF +fi + # Start SSH daemon /usr/sbin/sshd