2018-06-01 18:23:25 +09:00
|
|
|
FROM archlinux/base:latest
|
2020-02-03 15:00:21 +09:00
|
|
|
RUN pacman -Sy && pacman --noconfirm -S awk git tmux zsh fish ruby procps go make gcc
|
2019-03-31 11:22:12 +09:00
|
|
|
RUN gem install --no-document minitest
|
2018-06-01 18:23:25 +09: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 19:42:29 +09: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 ]
|