Created
October 4, 2020 05:35
-
-
Save scottstanfield/143860388c45ed96102f31673b6f0579 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine | |
RUN apk update | |
RUN apk add git openssh zsh nano vim less mandoc man-pages curl wget coreutils binutils findutils grep bash | |
RUN apk add build-base gcc openssl | |
RUN git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k | |
WORKDIR /root | |
#RUN echo "source powerlevel10k/powerlevel10k.zsh-theme" > .zshrc | |
RUN curl -sfL git.io/antibody | sh -s - -b /usr/local/bin | |
RUN mkdir .zsh && git clone git://github.com/marlonrichert/zsh-snap .zsh/zsh-snap | |
RUN echo "source ~/.zsh/zsh-snap/znap.zsh" > .zshrc | |
COPY plugins.txt /root | |
## Trying a few ZSH shell plugins | |
## https://github.com/marlonrichert/zsh-snap | |
## https://github.com/laggardkernel/zsh-thefuck | |
## https://jdhao.github.io/2019/10/08/zsh_plugin_managers_compare/ | |
CMD zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment