mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-06 23:46:24 +00:00
* make konnect url configurable * switch to fork of dockerize as it allows to skip ssl verification since the address of the oidc issuer is now dynamic it could point to an invalid ssl certificate (the self signed cert is by default "valid" for *) * update hadolint * add more scopes * only skip ssl verification when running insecure
22 lines
750 B
Docker
22 lines
750 B
Docker
ARG docker_repo=zokradonh
|
|
FROM ${docker_repo}/kopano_core
|
|
|
|
LABEL maintainer=az@zok.xyz \
|
|
org.label-schema.name="Kopano utils container" \
|
|
org.label-schema.description="Container that bundles various cli tools from Kopano Groupware Core" \
|
|
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=$KOPANO_CORE_VERSION \
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
vim nano man less \
|
|
kopano-backup \
|
|
kopano-migration-imap \
|
|
kopano-migration-pst \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD [ "/bin/bash" ]
|