KazV2/dockers/translucid/Dockerfile

17 lines
316 B
Docker
Raw Normal View History

2024-11-25 09:38:24 +01:00
# Utilisation de l'image officielle PHP avec Apache
FROM php:8.1-apache
RUN apt-get update && apt-get install -y git
RUN docker-php-ext-install mysqli
RUN a2enmod rewrite
WORKDIR /var/www/html
RUN git clone https://github.com/simonvdfr/Translucide.git .
RUN chown -R www-data:www-data /var/www/html
EXPOSE 80