mirror of
				https://review.coreboot.org/flashrom.git
				synced 2025-11-04 15:10:39 +01:00 
			
		
		
		
	Disable certificate verification for Git commands, including those that run during tests. At some point, the `ca-certificates` won't get updates anymore and, ideally, existing docker images will keep working. Change-Id: I8d7dedeb97777d2f1e6e7e69aefb8cc7ca604940 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66999 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net>
		
			
				
	
	
		
			23 lines
		
	
	
		
			585 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			585 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM manibase
 | 
						|
 | 
						|
RUN \
 | 
						|
	useradd -p locked -m mani && \
 | 
						|
	apt-get -qq update && \
 | 
						|
	apt-get -qq upgrade && \
 | 
						|
	apt-get -qq dist-upgrade && \
 | 
						|
	apt-get -qqy install gcc make git doxygen ccache pkg-config \
 | 
						|
		libpci-dev libusb-dev libftdi-dev libusb-1.0-0-dev && \
 | 
						|
	{ apt-get -qqy install libjaylink-dev || true; } && \
 | 
						|
	apt-get clean
 | 
						|
 | 
						|
ENV GIT_SSL_NO_VERIFY=1
 | 
						|
USER mani
 | 
						|
RUN \
 | 
						|
	cd && \
 | 
						|
	mkdir .ccache && chown mani:mani .ccache && \
 | 
						|
	git clone https://review.coreboot.org/flashrom.git
 | 
						|
 | 
						|
ENV DEVSHELL /bin/bash
 | 
						|
COPY mani-wrapper.sh /home/mani/
 | 
						|
ENTRYPOINT ["/bin/sh", "/home/mani/mani-wrapper.sh"]
 |