Comment by m463

4 months ago

If you are talking about the

  RUN  foo && \
       bar && \
       baz

thing, I completely agree.

I've always wondered if there could be something like:

  LAYER
  RUN foo
  RUN bar
  RUN baz
  LAYER

to accomplish something similar, or maybe:

  RUN foo
  AND bar
  AND baz

There are also health/liveness checks, entry point code, sometimes embedded right in the Helm templates.