Interview - Dockerfile difference

Anonymous
dockerfile
08/10/2023 5:27 AM
196 B
15
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
Editor is loading...