aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCody Hiar <cody.hiar@investopedia.com>2016-09-02 14:34:31 -0600
committerCody Hiar <cody.hiar@investopedia.com>2016-09-02 17:12:04 -0600
commite91b54d9ec6c1287be2519904a9f39beb3485846 (patch)
tree56960c59f344b358b0e9b26d5ad76c67b0f189ea /README.md
parent7cfc1e88685fa4973d3e0020312c00615ef191a9 (diff)
Moved neovim to alpine linux to save time on compiling
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.md b/README.md
index a3754ae..fab51fe 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,13 @@
# Dockerized Neovim
Run neovim in a container and be cool like all the other cool kids.
-I like to dockerize all my tools so I am making this repo to dockerize Neovim.
+I'm currently trying to have as little dependancies installed on my host machine as possible.
# Step 1: Build the image
-The first step is to build the the docker image.
-I call mine thornycrackers/neovim so you will have to change that accordingly for the following steps
+The are 2 small steps that occur in this step.
+First we build the binaries for shellcheck, because I want to only have couple of MB's in binaries vs installing haskell.
+This creates a folder called 'package' at the root directory which we then import to our main neovim image.
+The second step is actually compiling the the neovim package which is just installing some stuff and copying the binaries.
+This can all be done with a single make command.
```
$ make build
```