10 lines
319 B
Plaintext
10 lines
319 B
Plaintext
FROM ubuntu:latest
|
|
|
|
RUN mkdir ~/.config
|
|
RUN apt-get -y update \
|
|
&& apt-get -y install git neovim \
|
|
&& git clone https://git.bork.quest/skullbite/nvim-config ~/.config/nvim \
|
|
&& echo "nvim" >> ~/.bashrc
|
|
|
|
# RUN sh -c "$(curl -sSL https://git.bork.quest/skullbite/devpod-containers/raw/branch/main/env/<>.sh)"
|