We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cac4c4 commit d3519dfCopy full SHA for d3519df
1 file changed
php8.4-32bit/Dockerfile
@@ -11,9 +11,14 @@ RUN apt-get update && apt-get install -y wget apt-transport-https lsb-release ca
11
rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*
12
13
RUN phpenmod zip intl gd systemd
14
+RUN phpdismod xdebug
15
+
16
+# Don't use root
17
+RUN groupadd -g 1001 runner &&useradd -m -u 1001 -g runner runner
18
+USER runner
19
20
RUN curl -O -L https://getcomposer.org/download/2.9.2/composer.phar \
21
&& chmod +x composer.phar \
22
&& mv composer.phar /usr/local/bin/composer
23
-RUN phpdismod xdebug
24
ADD nextcloud.ini /etc/php/8.4/cli/conf.d/nextcloud.ini
0 commit comments