-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
38 lines (32 loc) · 1.11 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
ARG BASE_IMAGE_TAG=10.1
FROM wengerk/drupal-for-contrib:${BASE_IMAGE_TAG}
# Disable deprecation notice as CKEditor4 module will throw an exception until we remove support of Drupal 9.
# ENV SYMFONY_DEPRECATIONS_HELPER=disabled
# Register the Drupal and DrupalPractice Standard with PHPCS.
RUN ./vendor/bin/phpcs --config-set installed_paths \
`pwd`/vendor/drupal/coder/coder_sniffer
# Copy the Analyzer definition files to ease run.
COPY phpcs.xml.dist phpmd.xml ./
# Download & install PHPMD.
RUN set -eux; \
curl -LJO https://phpmd.org/static/latest/phpmd.phar; \
chmod +x phpmd.phar; \
mv phpmd.phar /usr/bin/phpmd
# Download & install PHPCPD.
RUN set -eux; \
curl -LJO https://phar.phpunit.de/phpcpd.phar; \
chmod +x phpcpd.phar; \
mv phpcpd.phar /usr/bin/phpcpd
# Download & install PhpDeprecationDetector.
RUN set -eux; \
\
apt-get update; \
apt-get install -y \
libbz2-dev \
; \
\
docker-php-ext-install bz2; \
\
curl -LJO https://github.com/wapmorgan/PhpDeprecationDetector/releases/download/2.0.24/phpcf-2.0.24.phar; \
chmod +x phpcf-2.0.24.phar; \
mv phpcf-2.0.24.phar /usr/bin/phpdd