mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 16:06:14 +00:00
switch kopano_ssl from apline:latest to alpine:3.9 add tagging and publishing of tag to Makefile update version of Konnect and Kweb since they have been update meanwhile
23 lines
388 B
Docker
23 lines
388 B
Docker
FROM alpine:3.9
|
|
ENV CODE_VERSION=1.0
|
|
|
|
LABEL maintainer=az@zok.xyz \
|
|
version="1.0"
|
|
|
|
RUN mkdir -p /kopano/easypki /kopano/ssl /kopano/ssl/clients
|
|
WORKDIR /kopano/easypki
|
|
|
|
ENV PKI_ROOT /kopano/easypki
|
|
ENV PKI_ORGANIZATION Internal Kopano System
|
|
ENV PKI_COUNTRY DE
|
|
|
|
RUN apk add --no-cache \
|
|
easypki \
|
|
openssl
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
RUN chmod a+x /start.sh
|
|
|
|
CMD ["/start.sh"]
|