RUN instruction - Dockerfile
The RUN instruction will execute the Linux command on a new layer. It is used to alter the image like adding new packages using apt-get or changing file permissions etc. RUN has 2 forms: RUN (the command is run in a shell, which by default is /bin/...
Nov 26, 20222 min read23
