roosta.tmux-fuzzback/Containerfile
Daniel Berg e33b796263
chore(ci): remove prefixed dot to conf
Remainder from when I used to put it in home
2025-05-07 17:39:51 +02:00

12 lines
218 B
Docker

FROM alpine:latest
WORKDIR /app
COPY . ./
COPY ./tests/tmux.conf /etc
RUN apk update && apk add --no-cache bash fzf fzf-tmux vim tmux expect
ENV TERM="tmux-256color"
CMD ["bash"]
CMD ["/app/tests/test_fuzzback.sh"]