mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-10 07:26:26 -04:00
Some checks failed
Test / lint (push) Has been cancelled
Test / pandoc to vimdoc (push) Has been cancelled
Test / Run Test (macos-latest) (push) Has been cancelled
Test / Run Test (ubuntu-latest) (push) Has been cancelled
release-please / release-please (push) Has been cancelled
docker files to test solarized colorscheme
8 lines
226 B
Docker
8 lines
226 B
Docker
FROM archlinux
|
|
WORKDIR /solarized
|
|
COPY . .
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S luarocks neovim gcc lua51 --noconfirm
|
|
RUN luarocks install luacheck && luarocks --lua-version=5.1 install vusted
|
|
CMD [ "vusted", "./tests" ]
|