Interview - Dockerfile difference

 avatar
unknown
dockerfile
a year ago
147 B
3
Indexable
RUN apt-get update && \
    apt-get install -y python3 && \
    apt-get clean

RUN apt-get update
RUN apt-get install -y python3
RUN apt-get clean