diff options
author | Cody Hiar <cody.hiar@investopedia.com> | 2016-10-13 15:42:18 -0600 |
---|---|---|
committer | Cody Hiar <cody.hiar@investopedia.com> | 2016-10-13 15:42:18 -0600 |
commit | 403bd1b54ca7d6328e0beadb5a79149a89563730 (patch) | |
tree | 61a2520ba485f16f69e58326c13f56e396d99105 /Dockerfile | |
parent | 940c1002852d4326cbe5bcca76b6886a195abd71 (diff) |
Updating more pip packages and fixing dependancy issues
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,12 +1,14 @@ FROM alpine:3.3 # Add the testing repo to get neovim -RUN echo "@testing http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories +RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories +RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories # Install all the needed packages RUN apk add --no-cache \ # My Stuff zsh \ + unibilium \ php \ php-json \ php-phar \ @@ -17,7 +19,7 @@ RUN apk add --no-cache \ python-dev \ python3-dev \ nodejs \ - neovim@testing \ + neovim \ # Needed for python pip installs musl-dev \ gcc @@ -50,8 +52,8 @@ RUN phpcs --config-set installed_paths /root/.composer/vendor/escapestudios/symf ADD PEARish.xml /root/PEARish.xml # Install python linting and neovim plugin -RUN pip install neovim flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257 jedi -RUN pip3 install neovim jedi +RUN pip install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257 +RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257 # Install nodejs linting # Install JS linting modules |