diff --git a/Dockerfile b/Dockerfile index b249294..328f3ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,11 @@ ADD root/ / # Fix the original permissions of /tmp, the PHP default upload tmp dir. RUN chmod 777 /tmp && chmod +t /tmp +# Install some packages that are useful within the images. +RUN apt-get update && apt-get install -y \ + git \ +&& rm -rf /var/lib/apt/lists/* + # Setup the required extensions. ARG DEBIAN_FRONTEND=noninteractive RUN /tmp/setup/php-extensions.sh