Install vim in Dockerimage.

This commit is contained in:
Emanuel Schütze 2017-09-27 11:09:03 +02:00
parent 231a056790
commit e3e8785079

View File

@ -1,7 +1,7 @@
FROM python:3.5 FROM python:3.5
RUN apt-get -y update && apt-get -y upgrade RUN apt-get -y update && apt-get -y upgrade
RUN apt-get install -y libpq-dev supervisor curl RUN apt-get install -y libpq-dev supervisor curl vim
## BUILD JS STUFF ## BUILD JS STUFF
RUN wget https://nodejs.org/dist/v6.11.3/node-v6.11.3-linux-x64.tar.xz -P /tmp RUN wget https://nodejs.org/dist/v6.11.3/node-v6.11.3-linux-x64.tar.xz -P /tmp
RUN cd /tmp && tar xfvJ node-v6.11.3-linux-x64.tar.xz RUN cd /tmp && tar xfvJ node-v6.11.3-linux-x64.tar.xz