LunarVim/nvim-mach2.Dockerfile

37 lines
602 B
Docker
Raw Normal View History

2020-05-14 05:21:26 +02:00
FROM ubuntu:20.04
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
# ENV LC_ALL en_US.UTF-8
ENV TERM screen-256color
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y \
git \
bash \
fzf \
wget \
python3-dev \
python3-pip \
libssl-dev \
libffi-dev \
locales \
curl \
ripgrep \
nodejs \
npm \
neovim
SHELL ["/bin/bash", "-c"]
2020-05-14 06:39:28 +02:00
RUN npm i -g neovim
2020-05-15 19:47:42 +02:00
RUN bash <(curl -s https://raw.githubusercontent.com/ChristianChiarulli/nvim/master/utils/install-docker.sh)
2020-05-14 05:21:26 +02:00
RUN git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/install
CMD ["nvim"]