nvim.nix/Dockerfile
2023-05-12 05:00:02 -05:00

12 lines
238 B
Docker

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