mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
7 lines
223 B
Docker
7 lines
223 B
Docker
FROM archlinux
|
|
WORKDIR /dracula
|
|
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" ] |