We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 374feae + 397d14f commit c4032c2Copy full SHA for c4032c2
Dockerfile
@@ -4,6 +4,11 @@ ADD root/ /
4
# Fix the original permissions of /tmp, the PHP default upload tmp dir.
5
RUN chmod 777 /tmp && chmod +t /tmp
6
7
+# Install some packages that are useful within the images.
8
+RUN apt-get update && apt-get install -y \
9
+ git \
10
+&& rm -rf /var/lib/apt/lists/*
11
+
12
# Setup the required extensions.
13
ARG DEBIAN_FRONTEND=noninteractive
14
RUN /tmp/setup/php-extensions.sh
0 commit comments