[readme] do not use tilde expansion in ENV of Dockerfile

It won't expand. my bad.
This commit is contained in:
Mozi
2026-04-11 00:34:20 -04:00
committed by Jordan Harband
parent 20d52b6419
commit 3e4b0f05b7

View File

@@ -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