1
0
mirror of https://github.com/zokradonh/kopano-docker.git synced 2026-08-11 16:32:59 +00:00

Fix build for official and supported releases (#15)

* Fix build for official and supported releases
* Fix config generation: skip missing config files
* kopano-search ignores KOPANO_CONFIG_PATH env var
* Use kopano core 8.7 by default
* Include APT release key in this repo
* Copy APT release key into image
This commit is contained in:
h44z
2020-06-08 12:17:57 +02:00
committed by GitHub
parent 1120a8e08b
commit 4effa19d91
14 changed files with 68 additions and 20 deletions
+3 -6
View File
@@ -44,11 +44,7 @@ RUN apt-get update && \
moreutils \
python3-minimal \
&& \
rm -rf /var/cache/apt /var/lib/apt/lists/*; \
# install apt key if supported kopano
if [ ${RELEASE_KEY_DOWNLOAD} -eq 1 ]; then \
curl -s -S -o - "${KOPANO_CORE_REPOSITORY_URL}/Release.key" | apt-key add -; \
fi
rm -rf /var/cache/apt /var/lib/apt/lists/*
# Create kopano user and group
RUN groupadd --system --gid ${KOPANO_GID} kopano
@@ -73,7 +69,8 @@ RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
# get common utilities
COPY create-kopano-repo.sh /kopano/helper/
COPY kcconf.py defaultconfigs/ /kopano/
COPY kcconf.py Release.key defaultconfigs/ /kopano/
RUN apt-key add /kopano/Release.key
SHELL [ "/bin/bash", "-c"]