mirror of
https://github.com/kazhala/dotbare
synced 2024-11-04 06:00:45 +00:00
9 lines
266 B
Docker
9 lines
266 B
Docker
|
FROM bats/bats:latest
|
||
|
RUN apk add --no-cache git
|
||
|
RUN apk add --no-cache fzf
|
||
|
ADD ./ /root/dotbare
|
||
|
RUN echo "PATH=$PATH:$HOME/dotbare" >> "$HOME"/.bashrc
|
||
|
WORKDIR /root/dotbare
|
||
|
RUN ./dotbare finit -u https://github.com/kazhala/dotfiles.git
|
||
|
ENTRYPOINT ["bats", "tests"]
|