mirror of
https://github.com/kazhala/dotbare
synced 2024-11-06 09:20:25 +00:00
10 lines
243 B
Docker
10 lines
243 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache bash
|
|
RUN apk add --no-cache git
|
|
RUN apk add --no-cache vim
|
|
RUN apk add --no-cache fzf
|
|
ADD ./ /root/dotbare
|
|
RUN echo "PATH=$PATH:$HOME/dotbare" >> "$HOME"/.bashrc
|
|
WORKDIR /root
|
|
ENTRYPOINT ["/bin/bash"]
|