How many layers does FROM create in Ubuntu?
I am reading the official Docker docs, and it is unclear to me how many layers will be created for the below dockerfile. # syntax=docker/dockerfile:1 FROM ubuntu:18.04 LABEL org.opencontainers.image.authors="[email protected]" COPY . /app RUN make /app RUN rm -r $HOME/.cache CMD…