From bded077004ea5ae7facc69422d154ec9dc4d424c Mon Sep 17 00:00:00 2001 From: MoisesTapia Date: Thu, 30 Jul 2020 14:38:24 -0500 Subject: [PATCH] Optimized Dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ac7af7a..9e6e677 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,8 @@ WORKDIR /home/ COPY . /home/ -RUN apt-get update - -RUN apt-get install -y --no-install-recommends python3.7 && \ +RUN apt-get update && \ + apt-get install -y --no-install-recommends python3.7 && \ apt-get install -y python3-pip && \ apt-get install --no-install-recommends -y php && \ apt-get clean && \