mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-21 13:02:26 +08:00
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.
This commit is contained in:
parent
e59b75125a
commit
055178bf3d
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user