mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 08:55:16 -06:00
11 lines
225 B
Docker
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" ]
|