summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: bdb70e11b258046f0e7a85769fad662fdac3d408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM php:apache

COPY --from=composer /usr/bin/composer /usr/bin/composer

WORKDIR /var/www/html

RUN apt-get update && apt-get -y install git

COPY composer* .
RUN composer install

RUN a2enmod rewrite

COPY index.php .
COPY .htaccess .