diff --git a/Dockerfile b/Dockerfile index 8e43d65..36f794f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ -FROM alpine:latest -RUN apk add --no-cache bash +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 "PATH=$PATH:$HOME/dotbare" >> "$HOME"/.bashrc WORKDIR /root -ENTRYPOINT ["/bin/bash"] +ENTRYPOINT ["bash"]