Remove unused dependencies
This commit is contained in:
parent
1b05907542
commit
80dcf6e5ba
2 changed files with 22 additions and 28 deletions
37
Dockerfile
37
Dockerfile
|
@ -4,33 +4,30 @@ FROM wordpress
|
||||||
# gpg keys listed at https://github.com/nodejs/node
|
# gpg keys listed at https://github.com/nodejs/node
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& for key in \
|
&& for key in \
|
||||||
9554F04D7259F04124DE6B476D5A82AC7E37093B \
|
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
|
||||||
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
|
B9AE9905FFD7803F25714661B63B535A4C206CA9 \
|
||||||
0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93 \
|
77984A986EBC2AA786BC0F66B01FBB92821C587A \
|
||||||
FD3A5288F042B6850C66B31F09FE44734EB7990E \
|
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
|
||||||
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
|
FD3A5288F042B6850C66B31F09FE44734EB7990E \
|
||||||
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
|
8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 \
|
||||||
|
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
|
||||||
|
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
|
||||||
; do \
|
; do \
|
||||||
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
|
gpg --keyserver pool.sks-keyservers.net --recv-keys "$key"; \
|
||||||
done
|
done
|
||||||
|
|
||||||
ENV NPM_CONFIG_LOGLEVEL info
|
ENV NPM_CONFIG_LOGLEVEL info
|
||||||
ENV NODE_VERSION 6.0.0
|
ENV NODE_VERSION 10.13.0
|
||||||
|
|
||||||
# install nodejs, php composer and php qa tools
|
# install nodejs, php composer and php sniffer
|
||||||
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
|
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
|
||||||
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
|
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
|
||||||
&& gpg --verify SHASUMS256.txt.asc \
|
|
||||||
&& grep " node-v$NODE_VERSION-linux-x64.tar.gz\$" SHASUMS256.txt.asc | sha256sum -c - \
|
&& grep " node-v$NODE_VERSION-linux-x64.tar.gz\$" SHASUMS256.txt.asc | sha256sum -c - \
|
||||||
&& tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
|
&& tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
|
||||||
&& rm "node-v$NODE_VERSION-linux-x64.tar.gz" SHASUMS256.txt.asc \
|
&& rm "node-v$NODE_VERSION-linux-x64.tar.gz" SHASUMS256.txt.asc
|
||||||
&& curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer \
|
|
||||||
&& apt-get update && apt-get install -y zlib1g-dev zip git \
|
|
||||||
&& composer global require "sebastian/phpcpd=*" \
|
|
||||||
&& composer global require "squizlabs/php_codesniffer=*" \
|
|
||||||
&& git clone git://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git /usr/share/php/PHP/CodeSniffer/Standards/WordPress \
|
|
||||||
&& composer global require "phpmd/phpmd=*" \
|
|
||||||
&& composer global require "mayflower/php-codebrowser=*" \
|
|
||||||
&& /root/.composer/vendor/bin/phpcs --config-set installed_paths /usr/share/php/PHP/CodeSniffer/Standards/WordPress
|
|
||||||
|
|
||||||
RUN npm install gulp -g
|
RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer
|
||||||
|
RUN apt-get update && apt-get install -y zlib1g-dev zip git
|
||||||
|
RUN composer global require "squizlabs/php_codesniffer=*"
|
||||||
|
RUN git clone git://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git /usr/share/php/PHP/CodeSniffer/Standards/WordPress
|
||||||
|
RUN /root/.composer/vendor/bin/phpcs --config-set installed_paths /usr/share/php/PHP/CodeSniffer/Standards/WordPress
|
||||||
|
|
13
Readme.md
13
Readme.md
|
@ -2,13 +2,10 @@
|
||||||
|
|
||||||
This is the Dockerfile for WordPress development that includes the following:
|
This is the Dockerfile for WordPress development that includes the following:
|
||||||
|
|
||||||
* WordPress
|
- WordPress
|
||||||
* nodejs
|
- nodejs
|
||||||
* composer
|
- composer
|
||||||
* phpcpd
|
- php_codesniffer
|
||||||
* php_codesniffer
|
- WordPress Coding Standards
|
||||||
* phpmd
|
|
||||||
* php-codebrowser
|
|
||||||
* WordPress Coding Standards
|
|
||||||
|
|
||||||
This image can be found on [Docker Hub](https://hub.docker.com/r/hyettdotme/wordpress-node/).
|
This image can be found on [Docker Hub](https://hub.docker.com/r/hyettdotme/wordpress-node/).
|
||||||
|
|
Loading…
Reference in a new issue