mirror of
				https://gitlab.labs.nic.cz/labs/bird.git
				synced 2024-05-11 16:54:54 +00:00 
			
		
		
		
	.gitlab-ci.yml: + pkg targets for some distros added + artifacts added - some distros were commented out (due to errors). misc/docker/*: + Dockerfiles updated with the necessary packages.
		
			
				
	
	
		
			20 lines
		
	
	
		
			281 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			281 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM opensuse/leap:15.2
 | 
						|
RUN zypper -n up
 | 
						|
RUN zypper -n install \
 | 
						|
	gcc \
 | 
						|
	make \
 | 
						|
	flex \
 | 
						|
	bison \
 | 
						|
	autoconf \
 | 
						|
	libssh-devel \
 | 
						|
	ncurses-devel \
 | 
						|
	readline-devel
 | 
						|
RUN zypper -n install \
 | 
						|
	git \
 | 
						|
	rpm-build \
 | 
						|
	systemd \
 | 
						|
	systemd-rpm-macros \
 | 
						|
	python3 \
 | 
						|
	python3-pip \
 | 
						|
	python3-setuptools
 |