Commit 055178bf authored by Bruno Pinto's avatar Bruno Pinto

Dockerfile to install fish and test dependencies

This Dockerfile creates an ubuntu machine with fish-shell and the
dependencies we use on our test suite installed.

It does not install Oh My Fish, which one might find weird (I do). Not
confident that this is the best approach, but it's the best I could find
at the moment.
parent e59b7512
FROM ubuntu
RUN echo "Installing fish"
RUN sudo apt-get install -y software-properties-common && \
sudo apt-add-repository ppa:fish-shell/release-2 && \
sudo apt-get -y update && \
sudo apt-get -y install fish
RUN echo "Installing dependencies"
RUN sudo apt-get -y install curl git tree
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment