mirror of
https://github.com/Cian-H/my_nvim.git
synced 2025-12-22 16:21:56 +00:00
11 lines
283 B
Docker
11 lines
283 B
Docker
FROM docker.io/anatolelucet/neovim:nightly
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
RUN apk add fzf git nodejs python3 py3-pynvim ripgrep zig
|
|
RUN mkdir ~/.config/
|
|
RUN git clone https://github.com/Cian-H/my_nvim_config.git
|
|
WORKDIR /cwd
|
|
CMD ["/entrypoint.sh"]
|