From 59d72ea682a78c1ff125691ca1b7b97871a28e50 Mon Sep 17 00:00:00 2001 From: omri Date: Mon, 15 Jul 2024 21:06:01 +0300 Subject: [PATCH] documents --- Dockerfile | 4 ++++ run.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a337a22..cec7842 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,10 @@ ARG NVIM="/nvim-linux64/bin/nvim" RUN yum install -y wget git npm gcc go unzip +# This part installs my dotfiles. +# If you want to do this with yours, you need to install your configuration files to ~/.config/nvim. +# You also need to make sure to sync your nvim packages, in this case, using lazy. + # downlad neovim binary RUN wget "https://github.com/neovim/neovim/releases/download/${VERSION}/nvim-linux64.tar.gz" RUN tar -xvf nvim-linux64.tar.gz diff --git a/run.sh b/run.sh index fbedf20..8406dc7 100755 --- a/run.sh +++ b/run.sh @@ -1,3 +1,3 @@ #!/bin/sh -docker build . -t offline_nvim:latest +docker build . -t offline_nvim:latest --no-cache docker run -v $(pwd)/out:/out offline_nvim:latest