7 lines
195 B
Docker
7 lines
195 B
Docker
FROM alpine:latest
|
|
RUN apk update && apk add git curl
|
|
RUN sh -c "$(curl -fsLS git.io/chezmoi)" -- init --apply candrewlee14
|
|
RUN nvim --headless +'PlugInstall --sync' +qa
|
|
ENTRYPOINT ["/bin/zsh"]
|
|
|