forked from elefan-grenoble/gestion-compte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
32 lines (24 loc) · 914 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM php:7.4
# Paramétrage de l'heure du conteneur
ENV TZ=Europe/Paris
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN dpkg-reconfigure --frontend noninteractive tzdata
# Installation des dépendances nécessaires
RUN apt-get update && apt-get install -y \
unzip \
locales \
libpng-dev \
libfreetype6-dev \
libjpeg-dev \
netcat
# Paramétrage de locale pour le Français
RUN sed -i 's/# fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
# Installation de Composer
COPY --from=composer:2.2 /usr/bin/composer /usr/bin/composer
# Configuration de gd avec FreeType
RUN docker-php-ext-configure gd --with-freetype --with-jpeg
# Installation des extensions nécessaires
RUN docker-php-ext-install -j$(nproc) pdo_mysql pcntl gd
WORKDIR /app
COPY . .
RUN COMPOSER_MEMORY_LIMIT=2G composer install --no-interaction --optimize-autoloader