-
Notifications
You must be signed in to change notification settings - Fork 441
DL3044
Petter Friberg edited this page Apr 3, 2024
·
2 revisions
ENV FOO=bar \
BAZ=${FOO}/bla
ENV FOO=bar
ENV BAZ=${FOO}/bla
Docker will not expand a variable within the same ENV
statement where it is defined. While it will not crash Docker, it carries a high likelihood of errors.