aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2024-12-17 01:01:50 +0100
committerpml68 <contact@pml68.dev>2024-12-17 01:01:50 +0100
commit75d9b3c3aa29b0a95142f35de85175e89651db02 (patch)
tree0cf69b3617e3bde2fee3d09b895c71a0661e268d /README.md
parentfeat: remove CPPFLAGS from `.bashrc` (diff)
downloadnvim-75d9b3c3aa29b0a95142f35de85175e89651db02.tar.gz
feat: switch to rustup pkg over rust, no-tex becomes base
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 22 insertions, 6 deletions
diff --git a/README.md b/README.md
index 6a7cc62..3624f6c 100644
--- a/README.md
+++ b/README.md
@@ -17,16 +17,32 @@ Pull the image
docker pull ghcr.io/pml68/neovim:latest
```
-OR
-
-Build the image
+Or build it
```sh
-docker build -t neovim .
+docker build -t neovim -f Dockerfile .
```
And then run it
```sh
-docker run -it neovim:latest bash
+docker run -it neovim:latest
```
-The image size is somewhere around 4.7GB due to every language I use being included (C# with .NET, Java 21 and 17 etc.)
+The image size is somewhere around 4.5GB due to every language I use being included (C# with .NET, Java 21 and 17 etc.)
+
+### TeX
+
+There is also an image that contains texlive packages I use on top of everything in the base image. The size is ~5.4GB.
+
+Pull or build the image
+```sh
+docker pull ghcr.io/pml68/neovim-tex:latest
+
+# OR
+
+docker build -t neovim-tex -f Dockerfile.tex .
+```
+
+And run it
+```sh
+docker run -it neovim-tex:latest
+```