From 3e4b0f05b707b6b939a67737d975f98e401f896a Mon Sep 17 00:00:00 2001 From: Mozi <29089388+pzhlkj6612@users.noreply.github.com> Date: Sat, 11 Apr 2026 00:34:20 -0400 Subject: [PATCH] [readme] do not use tilde expansion in ENV of Dockerfile It won't expand. my bad. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8002801..b98d538 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ When invoking bash as a non-interactive shell, like in a Docker container, none SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Create a script file sourced by both interactive and non-interactive bash shells -ENV BASH_ENV ~/.bash_env +ENV BASH_ENV "${HOME}/.bash_env" RUN touch "${BASH_ENV}" RUN echo '. "${BASH_ENV}"' >> ~/.bashrc