vimrc/sources_non_forked/vim-go/Dockerfile

20 lines
393 B
Docker
Raw Normal View History

2019-11-16 15:28:42 +00:00
FROM golang:1.13
2017-11-24 13:59:41 +00:00
RUN apt-get update -y && \
apt-get install -y build-essential curl git libncurses5-dev python3-pip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN pip3 install vim-vint
2017-11-24 13:59:41 +00:00
RUN useradd -ms /bin/bash -d /vim-go vim-go
USER vim-go
COPY . /vim-go/
WORKDIR /vim-go
RUN scripts/install-vim vim-8.0
RUN scripts/install-vim nvim
ENTRYPOINT ["make"]