I've seen docker commands expressed in Dockerfile
written within brackets or without them. But when to use one case or the other?
#within brackets
RUN ["apt-get", "update"]
#without brackets
RUN apt-get update
I've seen docker commands expressed in Dockerfile
written within brackets or without them. But when to use one case or the other?
#within brackets
RUN ["apt-get", "update"]
#without brackets
RUN apt-get update