Skip to content

Commit d7c1466

Browse files
committed
Fix copying phpstan config files into docker image
1 parent e5d1cab commit d7c1466

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.dockerignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
!/benchmarks/
66
!/composer.json
77
!/phpunit.xml.*
8-
!/phpstan.neon.*
8+
!/phpstan*.neon
99
!/.php_cs.*
1010
!/phpbench.json

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM scratch AS test_source
77
COPY benchmarks/ benchmarks/
88
COPY src/ /src/
99
COPY tests/ /tests/
10-
COPY phpunit.xml.* phpstan.neon.* .php_cs.* phpbench.json /
10+
COPY phpunit.xml.* phpstan*.neon .php_cs.* phpbench.json /
1111

1212
FROM alpine:3.9
1313

0 commit comments

Comments
 (0)