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/...
shubhamkshetre.hashnode.dev2 min read