mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 00:45:17 -06:00
11 lines
287 B
Docker
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
|