diff --git a/Docker/Dockerfile b/Docker/Dockerfile index cd2dacf..c087d07 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -5,11 +5,12 @@ WORKDIR /home/ RUN apt-get update -RUN apt-get install --no-install-recommends -y git && \ +RUN apt-get install -y --no-install-recommends git && \ apt-get install --no-install-recommends -y python3.7 && \ apt-get install -y python3-pip && \ - apt-get install --no-install-recommends -y php && \ - apt-get update && \ + apt-get install --no-install-recommends -y php + +RUN apt-get update && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*