|
FROM php:7.4-apache
|
|
RUN apt update && apt install -y --no-install-recommends sqlite3 git && apt clean && rm -rf /var/lib/apt/lists/*
|
|
RUN mkdir -p /etc/postfix/
|
|
COPY . /var/www/html/
|
|
RUN chmod +x /var/www/html/outils/genenv.sh
|
|
RUN /var/www/html/outils/genenv.sh
|