1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-06 23:46:24 +00:00
kopano-docker/utils/Dockerfile
Felix Bartels f7934cbc51
Make it possible to use an existing konnect instance (#195)
* 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
2019-08-20 21:16:42 +02:00

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" ]