Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
FROM php:7.3-apache
2
 
3
RUN apt-get update \
4
 && apt-get install -y git zlib1g-dev libzip-dev \
5
 && docker-php-ext-install zip \
6
 && a2enmod rewrite \
7
 && sed -i 's!/var/www/html!/var/www/public!g' /etc/apache2/sites-available/000-default.conf \
8
 && mv /var/www/html /var/www/public \
9
 && curl -sS https://getcomposer.org/installer \
10
  | php -- --install-dir=/usr/local/bin --filename=composer
11
 
12
WORKDIR /var/www