-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
47 lines (38 loc) · 1.36 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
39
40
41
42
43
44
45
46
ARG BASE_IMAGE_TAG=10.1
FROM wengerk/drupal-for-contrib:${BASE_IMAGE_TAG}
ARG BASE_IMAGE_TAG
ENV BASE_IMAGE_TAG=${BASE_IMAGE_TAG}
# Disable deprecation notice since PHPUnit 10 with Drupal 10.2 and upper.
# @see https://www.drupal.org/project/drupal/issues/3403491
ENV SYMFONY_DEPRECATIONS_HELPER=weak
# Install symfony/mime as required by bamboo_twig_extensions.
ENV COMPOSER_ALLOW_SUPERUSER=1
RUN COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/mime:^4.3|^5.1.0|^6.1.4|^7.0"
# 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.29/phpdd-2.0.29.phar; \
chmod +x phpdd-2.0.29.phar; \
mv phpdd-2.0.29.phar /usr/bin/phpdd