Skip to content

Commit 427ecf9

Browse files
authored
Merge pull request #611 from dbarzin/dev
Dev
2 parents d91062f + fe47ae9 commit 427ecf9

File tree

2 files changed

+23
-21
lines changed

2 files changed

+23
-21
lines changed

Dockerfile

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
FROM php:8.4-fpm-bookworm
22

33
# Installer Nginx et dépendances
4-
RUN apt update \
5-
&& apt-get install -y --no-install-recommends \
6-
nginx \
7-
git \
8-
mariadb-client \
9-
cron \
10-
libzip-dev \
11-
libpng-dev \
12-
libldap2-dev \
13-
libpq-dev \
14-
&& docker-php-ext-install \
15-
pdo_mysql \
16-
pdo_pgsql \
17-
zip \
18-
gd \
19-
ldap \
20-
&& docker-php-ext-enable opcache \
21-
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
22-
&& rm -rf /var/lib/apt/lists/*
4+
RUN apt update \
5+
&& apt-get install -y --no-install-recommends \
6+
nginx \
7+
git \
8+
mariadb-client \
9+
cron \
10+
libzip-dev \
11+
libpng-dev \
12+
libldap2-dev \
13+
libpq-dev \
14+
libicu-dev \
15+
&& docker-php-ext-install \
16+
pdo_mysql \
17+
pdo_pgsql \
18+
zip \
19+
gd \
20+
ldap \
21+
intl \
22+
&& docker-php-ext-enable opcache \
23+
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
24+
&& rm -rf /var/lib/apt/lists/*
2325

2426
RUN touch /etc/mailname
2527
RUN echo "sender@yourdomain.org" > /etc/mailname

resources/views/about.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<h2>Open Source</h2>
2525

26-
<p>Distribué sous licence <a href="https://www.gnu.org/licenses/licenses.html">GPL</a>, Deming s'adapte aux besoins des entreprises en quête d'amélioration continue de leur sécurité de l'information. Pour en savoir plus sur l’utilisation et les fonctionnalités, consultez la <a href="https://dbarzin.github.io/deming/index.fr/">documentation utilisateur</a> et le <a href="https://github.com/dbarzin">GitHub</a> du projet.</p>
26+
<p>Distribué sous licence <a href="https://www.gnu.org/licenses/licenses.html">GPL</a>, Deming s'adapte aux besoins des entreprises en quête d'amélioration continue de leur sécurité de l'information. Pour en savoir plus sur l’utilisation et les fonctionnalités, consultez la <a href="https://dbarzin.github.io/deming/fr/">documentation utilisateur</a> et le <a href="https://github.com/dbarzin">GitHub</a> du projet.</p>
2727
@elseif(Auth::User()->language==="de")
2828
<h1>Über Deming</h1>
2929

@@ -38,7 +38,7 @@
3838

3939
<h2>Open Source</h2>
4040

41-
<p>Unter der <a href="https://www.gnu.org/licenses/licenses.html">GPL-Lizenz</a> vertrieben, passt sich Deming den Bedürfnissen von Unternehmen an, die eine kontinuierliche Verbesserung ihrer Informationssicherheit anstreben. Weitere Informationen zur Nutzung und den Funktionen finden Sie in der <a href="https://dbarzin.github.io/deming/index.fr/">Benutzerdokumentation</a> und auf dem <a href="https://github.com/dbarzin">GitHub-Projekt</a>.</p>
41+
<p>Unter der <a href="https://www.gnu.org/licenses/licenses.html">GPL-Lizenz</a> vertrieben, passt sich Deming den Bedürfnissen von Unternehmen an, die eine kontinuierliche Verbesserung ihrer Informationssicherheit anstreben. Weitere Informationen zur Nutzung und den Funktionen finden Sie in der <a href="https://dbarzin.github.io/deming">Benutzerdokumentation</a> und auf dem <a href="https://github.com/dbarzin">GitHub-Projekt</a>.</p>
4242
@else
4343
<h1>About Deming</h1>
4444

0 commit comments

Comments
 (0)