Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Adds Docker images and github actions for testing #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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