Skip to content

Commit 4b308b0

Browse files
Merge pull request #73 from jmauerhan/patch-2
Create Dockerfile
2 parents a20c540 + ccc5fe6 commit 4b308b0

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)