stronk7

Untitled

May 26th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. diff --git a/Dockerfile b/Dockerfile
  2. index dcb9431..3526f03 100644
  3. --- a/Dockerfile
  4. +++ b/Dockerfile
  5. @@ -4,6 +4,11 @@ ADD root/ /
  6. # Fix the original permissions of /tmp, the PHP default upload tmp dir.
  7. RUN chmod 777 /tmp && chmod +t /tmp
  8.  
  9. +# Install some packages that are useful within the images.
  10. +RUN apt-get update && apt-get install -y \
  11. + git \
  12. +&& rm -rf /var/lib/apt/lists/*
  13. +
  14. # Setup the required extensions.
  15. ARG DEBIAN_FRONTEND=noninteractive
  16. RUN /tmp/setup/php-extensions.sh
Add Comment
Please, Sign In to add comment