Skip to content

Instantly share code, notes, and snippets.

@616b2f
Last active January 11, 2023 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 616b2f/ed2d9daa223da237a1ed1d7a0fc1cdc8 to your computer and use it in GitHub Desktop.
Save 616b2f/ed2d9daa223da237a1ed1d7a0fc1cdc8 to your computer and use it in GitHub Desktop.
nvim in docker
FROM fedora:37
RUN dnf install -y 'dnf-command(copr)' && \
dnf copr enable -y agriffis/neovim-nightly && \
dnf install -y neovim
CMD nvim --listen 0.0.0.0:8080
@616b2f
Copy link
Author

616b2f commented Jan 11, 2023

to run it e.g.:

podman run -p8080:8080 <name of your container image or image hash>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment