-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
49 lines (41 loc) · 1.61 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
47
48
49
ARG BASE_IMAGE_TAG=10.2
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/3401236#comment-15330177
ENV SYMFONY_DEPRECATIONS_HELPER=weak
# Install drupal/paragraphs as required by entity_to_text_paragraphs
RUN COMPOSER_MEMORY_LIMIT=-1 composer config minimum-stability dev
RUN COMPOSER_MEMORY_LIMIT=-1 composer require "drupal/paragraphs:^1.14"
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/entity_browser"
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/feeds"
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/pathauto"
# 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