maxmx03.dracula.nvim/Dockerfile
2024-02-20 16:44:41 -03:00

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" ]