| 123456789101112131415161718192021222324252627282930313233343536 | FROM ubuntu:20.04ENV LANG en_US.UTF-8ENV LANGUAGE en_US:en# ENV LC_ALL en_US.UTF-8ENV TERM screen-256colorENV DEBIAN_FRONTEND=noninteractiveRUN apt update && apt install -y \  git \  bash \  fzf \  wget \  python3-dev \  python3-pip \  libssl-dev \  libffi-dev \  locales \  curl \  ripgrep \  nodejs \  npm \  neovimSHELL ["/bin/bash", "-c"]RUN npm i -g neovimRUN bash  <(curl -s https://raw.githubusercontent.com/ChristianChiarulli/nvim/master/utils/install-docker.sh)RUN git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/installCMD ["nvim"]
 |