You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|