forked from mistweaverco/kulala.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a18dcb
commit 69262a8
Showing
5 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,6 @@ indent_style = space | |
indent_size = 2 | ||
charset = utf-8 | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Kulala Neovim Linux Testrunner Docker Image | ||
|
||
This is a docker image for running tests in a Linux environment. | ||
|
||
It is based on the [ubuntu](https://hub.docker.com/_/ubuntu) image. | ||
|
||
## Features | ||
|
||
- `neovim` v0.10.2 | ||
- `stylua` v0.20.0 | ||
- `vale` v2.28.0 | ||
- `curl` | ||
- `git` | ||
- `gcc` | ||
- `lua5.1` | ||
- `luarocks` | ||
- `unzip` | ||
- `xclip` (for neovim clipboard support) | ||
- `luarocks busted` (for running tests) | ||
|
||
## Building the image | ||
|
||
```bash | ||
make docker-build OS=linux | ||
``` | ||
|
||
## Pushing the image | ||
|
||
> [!WARNING] | ||
> You need to have write access to the docker registry at | ||
> `ghcr.io/mistweaverco/kulala-nvim-linux-testrunner`. | ||
```bash | ||
make docker-push OS=windows | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022 | ||
|
||
USER ContainerAdministrator | ||
WORKDIR C:\\Users\\ContainerAdministrator\\AppData\\Local\\nvim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Kulala Neovim Windows Testrunner Docker Image | ||
|
||
This is a docker image for running tests in a Windows environment. | ||
|
||
It is based on the [microsoft/windows-nanoserver](https://hub.docker.com/r/microsoft/windows-nanoserver) image. | ||
|
||
## Features | ||
|
||
- `neovim` v0.10.2 | ||
- `stylua` v0.20.0 | ||
- `vale` v2.28.0 | ||
- `curl` | ||
- `git` | ||
- `gcc` | ||
- `lua5.1` | ||
- `luarocks` | ||
- `unzip` | ||
- `luarocks busted` (for running tests) | ||
|
||
## Building the image | ||
|
||
> [!WARNING] | ||
> You need to run the docker build command on | ||
> a windows machine. | ||
> It's a limitation of the windows docker images, | ||
> provided by Microsoft, not us. | ||
```bash | ||
make docker-build OS=windows | ||
``` | ||
|
||
## Pushing the image | ||
|
||
> [!WARNING] | ||
> You need to have write access to the docker registry at | ||
> `ghcr.io/mistweaverco/kulala-nvim-windows-testrunner`. | ||
```bash | ||
make docker-push OS=windows | ||
``` |