mirror of
				https://github.com/drwetter/testssl.sh.git
				synced 2025-10-30 21:35:26 +01:00 
			
		
		
		
	 dc7d13b853
			
		
	
	dc7d13b853
	
	
	
		
			
			Create `testssl` user (_and group_) with no password (`-D`) and default their shell to bash (`-s`): - A group will implicitly be created with the same value as the user. `addgroup testssl` and `-G testssl` are not needed. - Gecos data (`-g "testssl user"`) doesn't appear relevant to the project to be required? The default gecos value (`Linux User,,,`) should be fine.
		
			
				
	
	
		
			21 lines
		
	
	
		
			568 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			568 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.17
 | |
| 
 | |
| RUN apk update && \
 | |
|     apk upgrade && \
 | |
|     apk add bash procps drill git coreutils libidn curl socat openssl xxd && \
 | |
|     rm -rf /var/cache/apk/* && \
 | |
|     adduser -D -s /bin/bash 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"]
 |