2022-08-28 17:44:40 -04:00
|
|
|
ARG REPO='https://git.shaunreed.com/shaunrd0/dot'
|
|
|
|
|
FROM ubuntu:latest
|
|
|
|
|
COPY . /dot
|
|
|
|
|
ENV TERM=xterm-256color
|
|
|
|
|
# Install additional packages we need
|
2026-02-14 01:58:02 +00:00
|
|
|
RUN bash -c '. /dot/.bash_aliases && apt update -y && apt install -y $DOT_PACKAGES fontconfig'
|
|
|
|
|
RUN apt upgrade -y
|
2022-08-28 17:44:40 -04:00
|
|
|
RUN go install github.com/arl/gitmux@latest
|
|
|
|
|
# Update submodules for plugins
|
|
|
|
|
RUN cd /dot && git submodule update --init && cp .gitmux.conf.docker .gitmux.conf
|
|
|
|
|
RUN rm ~/.bashrc && rm -rf /dot/.tmux/plugins/tmux-yank
|
|
|
|
|
RUN cd /dot && stow -t /root .
|
|
|
|
|
|