File tree Expand file tree Collapse file tree 5 files changed +44
-6
lines changed Expand file tree Collapse file tree 5 files changed +44
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- FROM ubuntu:bionic
1
+ FROM ubuntu:focal
2
2
3
3
RUN apt-get update && \
4
4
apt-get install --quiet --yes software-properties-common && \
@@ -11,4 +11,4 @@ RUN chsh -s /usr/bin/fish
11
11
12
12
ENV SHELL /usr/bin/fish
13
13
14
- ENTRYPOINT [ "fish" ]
14
+ ENTRYPOINT [ "fish" ]
Original file line number Diff line number Diff line change
1
+ FROM ubuntu:focal
2
+
3
+ RUN apt-get update && \
4
+ apt-get install --quiet --yes software-properties-common && \
5
+ add-apt-repository --yes ppa:fish-shell/release-3 && \
6
+ apt-get install --quiet --yes fish && \
7
+ apt-get install -y build-essential \
8
+ tmux \
9
+ git \
10
+ neovim \
11
+ curl \
12
+ stow
13
+
14
+
15
+ SHELL ["fish" , "--command" ]
16
+ RUN chsh -s /usr/bin/fish
17
+ ENV SHELL /usr/bin/fish
18
+
19
+ RUN curl https://pyenv.run | bash
20
+
21
+ WORKDIR /home
22
+ RUN git clone https://github.com/turing-complet/dotfiles.git
23
+
24
+ RUN curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
25
+ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
26
+
27
+ WORKDIR dotfiles
28
+ RUN stow fish
29
+ RUN stow vim
30
+ RUN vim +PlugInstall +qall
31
+
32
+ ENTRYPOINT [ "fish" ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Run xeyes in a container
2
+ #
3
+ # docker run -d \
4
+ # -v /tmp/.X11-unix:/tmp/.X11-unix \
5
+ # -e DISPLAY=unix$DISPLAY \
6
+ # --device /dev/dri:/dev/dri \
7
+ # --name xeyes \
8
+ # xeyes:latest
9
+ #
10
+
1
11
FROM ubuntu:bionic
2
12
RUN apt-get update
3
13
RUN apt-get install -y x11-apps
You can’t perform that action at this time.
0 commit comments