Skip to content

Commit ccc5fe6

Browse files
authored
Create Dockerfile
Work on Issue #49
1 parent b054383 commit ccc5fe6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM php:7.1-apache
2+
3+
COPY . /var/www/client
4+
WORKDIR /var/www/client
5+
6+
RUN apt-get update && \
7+
apt-get install -y git zip zlib1g-dev && docker-php-ext-install zip
8+
RUN curl --silent --show-error https://getcomposer.org/installer | php
9+
10+
RUN php composer.phar install

0 commit comments

Comments
 (0)