mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-11-22 05:03:49 +08:00
12 lines
296 B
Docker
12 lines
296 B
Docker
|
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
|
||
|
|