2018-06-01 09:23:25 +00:00
|
|
|
FROM archlinux/base:latest
|
2020-02-03 06:00:21 +00:00
|
|
|
RUN pacman -Sy && pacman --noconfirm -S awk git tmux zsh fish ruby procps go make gcc
|
2020-10-23 10:54:45 +00:00
|
|
|
RUN gem install --no-document -v 5.14.2 minitest
|
2018-06-01 09:23:25 +00:00
|
|
|
RUN echo '. /usr/share/bash-completion/completions/git' >> ~/.bashrc
|
|
|
|
RUN echo '. ~/.bashrc' >> ~/.bash_profile
|
|
|
|
|
|
|
|
# Do not set default PS1
|
|
|
|
RUN rm -f /etc/bash.bashrc
|
|
|
|
COPY . /fzf
|
2018-06-08 10:42:29 +00:00
|
|
|
RUN cd /fzf && make install && ./install --all
|
|
|
|
CMD tmux new 'set -o pipefail; ruby /fzf/test/test_go.rb | tee out && touch ok' && cat out && [ -e ok ]
|