This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-7-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 0eb0a7a70bc7d0aa5efa17a081215a9875ddb2e6 Author: Amogh Desai <[email protected]> AuthorDate: Tue Aug 8 12:49:04 2023 +0530 Fixing typo in Dockerfile (#33180) * Fixing typo in Dockerfile * Fixing typo in Dockerfile (cherry picked from commit 624cf7f75a95de63bcf7a22016b13f917669e9f2) --- Dockerfile | 2 +- scripts/docker/entrypoint_prod.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8bb8a09f4..ad66a6afeb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1045,7 +1045,7 @@ if [[ -n "${_PIP_ADDITIONAL_REQUIREMENTS=}" ]] ; then >&2 echo " https://airflow.apache.org/docs/docker-stack/build.html" >&2 echo >&2 echo " Adding requirements at container startup is fragile and is done every time" - >&2 echo " the container starts, so it is onlny useful for testing and trying out" + >&2 echo " the container starts, so it is only useful for testing and trying out" >&2 echo " of adding dependencies." >&2 echo pip install --root-user-action ignore --no-cache-dir ${_PIP_ADDITIONAL_REQUIREMENTS} diff --git a/scripts/docker/entrypoint_prod.sh b/scripts/docker/entrypoint_prod.sh index fb50e1ddb0..be2c8c396d 100755 --- a/scripts/docker/entrypoint_prod.sh +++ b/scripts/docker/entrypoint_prod.sh @@ -305,7 +305,7 @@ if [[ -n "${_PIP_ADDITIONAL_REQUIREMENTS=}" ]] ; then >&2 echo " https://airflow.apache.org/docs/docker-stack/build.html" >&2 echo >&2 echo " Adding requirements at container startup is fragile and is done every time" - >&2 echo " the container starts, so it is onlny useful for testing and trying out" + >&2 echo " the container starts, so it is only useful for testing and trying out" >&2 echo " of adding dependencies." >&2 echo pip install --root-user-action ignore --no-cache-dir ${_PIP_ADDITIONAL_REQUIREMENTS}
