You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotbare/Dockerfile

9 lines
224 B
Docker

FROM bash:latest
RUN apk add --no-cache git
RUN apk add --no-cache vim
RUN apk add --no-cache fzf
ADD ./ /root/dotbare
RUN echo "source /root/dotbare/dotbare.plugin.bash" >> "$HOME"/.bashrc
WORKDIR /root
ENTRYPOINT ["bash"]