File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt update \
13
13
&& useradd --system --non-unique --uid ${PUID} --gid ${PGID} \
14
14
--no-create-home --home-dir / --shell /usr/sbin/nologin abc \
15
15
&& apt -y install --no-install-recommends \
16
- cron supervisor tzdata ca-certificates software-properties-common gpg-agent \
16
+ curl cron supervisor tzdata ca-certificates software-properties-common gpg-agent \
17
17
&& apt-add-repository ppa:ondrej/php \
18
18
&& echo "TZ=${TZ}" >> /etc/environment \
19
19
&& echo "${TZ}" > /etc/timezone \
@@ -33,6 +33,12 @@ RUN DEBIAN_FRONTEND=noninteractive apt purge -y software-properties-common gpg-a
33
33
&& apt clean \
34
34
&& rm -rf /etc/cron.*/*
35
35
36
+ # Install datadog
37
+ RUN curl -sLO https://github.com/DataDog/dd-trace-php/releases/latest/download/datadog-setup.php \
38
+ && php datadog-setup.php --php-bin=all --enable-appsec --enable-profiling \
39
+ && rm -f datadog-setup.php
40
+ ENV DD_TRACE_CLI_ENABLED=1
41
+
36
42
LABEL org.opencontainers.image.source = "https://github.com/Notifiarr/cron-docker"
37
43
38
44
COPY supervisor /etc/supervisor
You can’t perform that action at this time.
0 commit comments