Skip to content

Commit 6c43c86

Browse files
author
Sergei Kasatkin
committed
Setup docker to simplify running tests locally
1 parent bb19640 commit 6c43c86

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.dockerignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
vendor
2+
.idea
3+
.dockerignore
4+
.git*
5+
.travis.yml
6+
composer.lock
7+
docker-compose.yml
8+
Dockerfile

Dockerfile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
FROM composer
2+
3+
FROM php:5.4-cli
4+
5+
RUN apt-get update && \
6+
apt-get install -y \
7+
git \
8+
unzip
9+
10+
RUN docker-php-ext-install mbstring
11+
12+
COPY --from=composer /usr/bin/composer /usr/bin/composer
13+
14+
RUN composer global require hirak/prestissimo
15+
16+
WORKDIR /app
17+
18+
COPY composer.json .
19+
20+
RUN composer install --prefer-dist --no-interaction --no-ansi
21+
22+
COPY . .

docker-compose.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
version: '3'
2+
3+
services:
4+
app:
5+
build: .

0 commit comments

Comments
 (0)