1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-22 15:26:12 +00:00

add dedicated docker container for some utils

fixes https://github.com/zokradonh/kopano-docker/issues/57

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels 2018-12-18 13:38:46 +01:00
parent a83b0471d3
commit 51f11fb749
2 changed files with 13 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export
# convert lowercase componentname to uppercase
COMPONENT = $(shell echo $(component) | tr a-z A-Z)
build-all: build-ssl build-base build-core build-webapp build-zpush build-kweb build-ldap-demo
build-all: build-ssl build-base build-core build-utils build-webapp build-zpush build-kweb build-ldap-demo
build: component ?= base
build:
@ -46,6 +46,9 @@ build-base:
build-core:
component=core make build
build-utils:
component=utils make build
build-webapp:
component=webapp make build

9
utils/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
ARG docker_repo=zokradonh
FROM ${docker_repo}/kopano_core
RUN apt update && apt-get install --no-install-recommends -y \
kopano-backup \
kopano-migration-imap \
kopano-migration-pst
CMD [ "/bin/bash" ]