Ajout documentation projets OpenClassrooms (P02-P13) avec support bilingue
- Add all project documentation pages in French and English - Include PDF viewers for presentations and documents (P10, P12) - Add collapsible sections for scripts and logs (P10) - Add static assets for all projects - Update sidebars with new projets-openclassrooms category - Add npm start:en script for testing English locale
This commit is contained in:
parent
40a8985942
commit
ed989ff004
86 changed files with 24243 additions and 1 deletions
19
static/assets/projets-oc/p04/Dockerfile.txt
Normal file
19
static/assets/projets-oc/p04/Dockerfile.txt
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
FROM php:8.0-apache
|
||||
|
||||
# Mise à jour et installation des dépendances
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libzip-dev \
|
||||
unzip \
|
||||
&& docker-php-ext-install mysqli \
|
||||
&& docker-php-ext-enable mysqli
|
||||
|
||||
# Activer le site beesafe.conf et désactiver le site par défaut 000-default.conf
|
||||
RUN a2ensite beesafe.conf && \
|
||||
a2dissite 000-default.conf && \
|
||||
service apache2 reload
|
||||
|
||||
# Nettoyage des fichiers inutiles pour réduire la taille de l'image
|
||||
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Commande pour garder Apache en fonctionnement
|
||||
CMD ["apache2-foreground"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue