first commit

This commit is contained in:
2025-01-03 15:44:10 +01:00
commit 2f32ad5e00
34 changed files with 6027 additions and 0 deletions

15
misc/docker/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM reg.cadoles.com/envole/nineapache:8.2
COPY ./misc/docker/apache.conf /etc/apache2/conf.d/nine/site.conf
WORKDIR /app
COPY . .
# Installation des dépendances composer
RUN composer install --no-interaction
RUN mkdir -p /app/var
RUN chown apache /app/var -R
RUN chmod u+w /app/var -R
CMD /etc/apache2/apache2.sh