nvim.nix/Dockerfile
2023-05-12 04:56:55 -05:00

11 lines
225 B
Docker

FROM nixos/nix
COPY . .
RUN nix bundle \
--bundler github:ralismark/nix-appimage \
--extra-experimental-features nix-command \
--extra-experimental-features flakes \
.
ENTRYPOINT [ "nvim-x86_64.AppImage" ]