Skip to content
Closed
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
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ FROM quay.io/devfile/universal-developer-image:latest
USER root

# Add fish repo
RUN cd /etc/yum.repos.d && \
wget https://download.opensuse.org/repositories/shells:fish:release:3/CentOS_8/shells:fish:release:3.repo
# RUN cd /etc/yum.repos.d && \
# wget https://download.opensuse.org/repositories/shells:fish:release:3/CentOS_8/shells:fish:release:3.repo

# Add epel repo
RUN yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
RUN yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm

# Install dependencies
RUN yum install -y curl fish neovim vim wget zsh
RUN yum install -y fish neovim vim wget zsh
RUN yum install -y ripgrep

# Clean dnf cache
RUN yum clean all
Expand Down