aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.php
diff options
context:
space:
mode:
authorCody Hiar <cody.hiar@investopedia.com>2016-09-02 14:34:31 -0600
committerCody Hiar <cody.hiar@investopedia.com>2016-09-02 17:12:04 -0600
commite91b54d9ec6c1287be2519904a9f39beb3485846 (patch)
tree56960c59f344b358b0e9b26d5ad76c67b0f189ea /Dockerfile.php
parent7cfc1e88685fa4973d3e0020312c00615ef191a9 (diff)
Moved neovim to alpine linux to save time on compiling
Diffstat (limited to 'Dockerfile.php')
-rw-r--r--Dockerfile.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/Dockerfile.php b/Dockerfile.php
deleted file mode 100644
index 7c05dfc..0000000
--- a/Dockerfile.php
+++ /dev/null
@@ -1,25 +0,0 @@
-FROM thornycrackers/neovim:python
-MAINTAINER Cody Hiar <codyfh@gmail.com>
-
-# Install packages
-RUN apt-get update && apt-get install -y \
- curl \
- php5
-
-# Download composer and move it to new location
-RUN curl -sS https://getcomposer.org/installer | php
-RUN mv composer.phar /usr/local/bin/composer
-
-# Update the path to include composer bins
-ENV PATH "$PATH:/root/.composer/vendor/bin"
-
-# Composer install Code Sniff
-RUN composer global require "squizlabs/php_codesniffer=*"
-# Install Symfony 2 coding standard
-RUN composer global require --dev escapestudios/symfony2-coding-standard:~2.0
-
-# Add Symfony 2 coding standard to the phpcs paths
-RUN phpcs --config-set installed_paths /root/.composer/vendor/escapestudios/symfony2-coding-standard
-
-# Install custom linting
-ADD PEARish.xml /root/PEARish.xml