Add more packages which are useful for a coreboot development and build environment and also make neovim the default editor. Change-Id: Ied09a9b9500d85348fc9c3862247bd8b85e50b54 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77724 Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
		
			
				
	
	
		
			34 lines
		
	
	
		
			546 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			546 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM archlinux:latest
 | |
| 
 | |
| RUN \
 | |
| 	echo "export EDITOR=nvim" > /etc/profile.d/cbsettings.sh && \
 | |
| 	chmod 755 /etc/profile.d/cbsettings.sh
 | |
| 
 | |
| RUN pacman-key --init && \
 | |
| 	pacman -Sy --noconfirm archlinux-keyring && \
 | |
| 	pacman-key --populate && \
 | |
| 	pacman-key --refresh-keys && \
 | |
| 	pacman -Syu --noconfirm
 | |
| 
 | |
| RUN pacman -S --noconfirm \
 | |
| 	base-devel \
 | |
| 	bash-completion \
 | |
| 	bzip2 \
 | |
| 	ccache \
 | |
| 	cscope \
 | |
| 	gcc-ada \
 | |
| 	git \
 | |
| 	go \
 | |
| 	htop \
 | |
| 	lcov \
 | |
| 	less \
 | |
| 	msitools \
 | |
| 	neovim \
 | |
| 	openssl \
 | |
| 	python3 \
 | |
| 	shellcheck \
 | |
| 	tmux \
 | |
| 	unzip \
 | |
| 	xz && \
 | |
| 	rm -r /var/cache/pacman/pkg/*
 |