mirror of
				https://github.com/drwetter/testssl.sh.git
				synced 2025-11-04 07:45:27 +01:00 
			
		
		
		
	.. see also #1559. It "mkdirs" the needed etc and bin directories first, then copies stuff over. It also reduces a few layers. Also it corrects a mistake in the Readme.md (docker exec --> run) Thanks for the discussion @Alex131089
		
			
				
	
	
		
			21 lines
		
	
	
		
			585 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			585 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.11
 | 
						|
 | 
						|
RUN apk update && \
 | 
						|
    apk upgrade && \
 | 
						|
    apk add --no-cache bash procps drill git coreutils libidn curl && \
 | 
						|
    addgroup testssl && \
 | 
						|
    adduser -G testssl -g "testssl user"  -s /bin/bash -D testssl && \
 | 
						|
    ln -s /home/testssl/testssl.sh /usr/local/bin/ && \
 | 
						|
    mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
 | 
						|
 | 
						|
USER testssl
 | 
						|
WORKDIR /home/testssl/
 | 
						|
 | 
						|
COPY --chown=testssl:testssl etc/. /home/testssl/etc/
 | 
						|
COPY --chown=testssl:testssl bin/. /home/testssl/bin/
 | 
						|
COPY --chown=testssl:testssl testssl.sh  /home/testssl/
 | 
						|
 | 
						|
ENTRYPOINT ["testssl.sh"]
 | 
						|
 | 
						|
CMD ["--help"]
 |