Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ubuntu:18.10
RUN apt-get update && \
apt-get install -y software-properties-common && \
apt-add-repository -y ppa:fish-shell/release-3 && \
apt-get update && \
apt-get install -y fish && \
apt-get install -y git && \
apt-get install -y curl && \
apt-get install -y python2.7 python-pip && \
apt-get install -y locales && \
locale-gen "en_US.UTF-8"

RUN git clone https://github.com/creationix/nvm.git ~/.nvm

CMD /usr/bin/fish
18 changes: 18 additions & 0 deletions Dockerfile-fisher
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM ubuntu:18.10
RUN apt-get update && \
apt-get install -y software-properties-common && \
apt-add-repository -y ppa:fish-shell/release-3 && \
apt-get update && \
apt-get install -y fish && \
apt-get install -y git && \
apt-get install -y curl && \
apt-get install -y python2.7 python-pip && \
apt-get install -y locales && \
locale-gen "en_US.UTF-8"

RUN git clone https://github.com/creationix/nvm.git ~/.nvm && \
fish -c "curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish" && \
fish -c "fisher add edc/bass & fisher add FabioAntunes/fish-nvm" && \
fish -c "nvm install v10.15.1"

CMD /usr/bin/fish
19 changes: 19 additions & 0 deletions Dockerfile-omf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:18.10
RUN apt-get update && \
apt-get install -y software-properties-common && \
apt-add-repository -y ppa:fish-shell/release-3 && \
apt-get update && \
apt-get install -y fish && \
apt-get install -y git && \
apt-get install -y curl && \
apt-get install -y python2.7 python-pip && \
apt-get install -y locales && \
locale-gen "en_US.UTF-8"

RUN git clone https://github.com/creationix/nvm.git ~/.nvm && \
curl -L https://get.oh-my.fish > install && \
fish install --path=~/.local/share/omf --config=~/.config/omf --noninteractive && \
fish -c "omf install bass & omf install https://github.com/FabioAntunes/fish-nvm" && \
fish -c "nvm install v10.15.1"

CMD /usr/bin/fish