We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d59c21e + 01af0ea commit 73d636bCopy full SHA for 73d636b
Dockerfile
@@ -8,6 +8,7 @@ RUN apt-get update && apt-get install -y \
8
zip \
9
unzip \
10
curl \
11
+ tini \
12
&& rm -rf /var/lib/apt/lists/*
13
14
COPY --from=composer /usr/bin/composer /usr/bin/composer
@@ -16,3 +17,7 @@ ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/do
16
17
18
RUN chmod +x /usr/local/bin/install-php-extensions && \
19
install-php-extensions $EXTENSIONS
20
+
21
+ENTRYPOINT ["/usr/bin/tini", "--"]
22
23
+CMD ["php", "-a"]
0 commit comments