nvim.nix/Dockerfile
2023-05-13 01:51:23 -05:00

11 lines
287 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 . && \
cp -L nvim-x86_64.AppImage neovim-x86_64-linux.AppImage && \
nix-collect-garbage