summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris <[email protected]>2020-05-13 23:21:26 -0400
committerChris <[email protected]>2020-05-13 23:21:26 -0400
commit6f1fc307d631d29c9cfdf225543116d5ce677336 (patch)
tree41ae1acbdd79be43c670b26fab2ed9d079158fdb
parent2947cb501e65db683172b91b63df4e1442693a3f (diff)
adding beta dockerfile
-rw-r--r--nvim-mach2.Dockerfile35
1 files changed, 35 insertions, 0 deletions
diff --git a/nvim-mach2.Dockerfile b/nvim-mach2.Dockerfile
new file mode 100644
index 00000000..8b7da9f5
--- /dev/null
+++ b/nvim-mach2.Dockerfile
@@ -0,0 +1,35 @@
+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"]
+
+RUN bash <(curl -s https://raw.githubusercontent.com/ChristianChiarulli/nvim/master/utils/install.sh)
+RUN git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/install
+
+CMD ["nvim"]
+
+
+
+
+