mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-11-03 20:07:27 +00:00 
			
		
		
		
	* precreate meet keys in ssl, but do the actual action in konnect * generate all keys for meet within Konnect * incorporate explicit logging and settings set by ucs app * make konnect container more dynamic * set default oidc_issuer_identifier * print size of container * builder image is not required for security scanning * define entrypoint instead of using command * more cleanup of testing containers * give logs in case of error
		
			
				
	
	
		
			31 lines
		
	
	
		
			808 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			808 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.9
 | 
						|
 | 
						|
ARG VCS_REF
 | 
						|
 | 
						|
ENV CODE_VERSION=1.1.0 \
 | 
						|
    PKI_ROOT=/kopano/easypki \
 | 
						|
    PKI_ORGANIZATION="Internal Kopano System" \
 | 
						|
    PKI_COUNTRY=DE
 | 
						|
 | 
						|
LABEL maintainer=az@zok.xyz \
 | 
						|
    org.label-schema.name="Kopano SSL container" \
 | 
						|
    org.label-schema.description="Helper Container for carrying out ssl related activities for the Kopano stack." \
 | 
						|
    org.label-schema.url="https://kopano.io" \
 | 
						|
    org.label-schema.vcs-ref=$VCS_REF \
 | 
						|
    org.label-schema.vcs-url="https://github.com/zokradonh/kopano-docker" \
 | 
						|
    org.label-schema.version=$CODE_VERSION \
 | 
						|
    org.label-schema.schema-version="1.0"
 | 
						|
 | 
						|
RUN mkdir -p /kopano/easypki /kopano/ssl /kopano/ssl/clients
 | 
						|
WORKDIR /kopano/easypki
 | 
						|
 | 
						|
RUN apk add --no-cache \
 | 
						|
    easypki \
 | 
						|
    openssl
 | 
						|
 | 
						|
COPY start.sh /start.sh
 | 
						|
 | 
						|
RUN chmod a+x /start.sh
 | 
						|
 | 
						|
CMD ["/start.sh"]
 |