1
0
mirror of https://github.com/zokradonh/kopano-docker.git synced 2026-08-21 13:23:09 +00:00

Subdir renaming (removed prefix)

This commit is contained in:
Andre Zoledziowski
2018-04-16 12:18:10 +02:00
parent 1d7cc13d91
commit 638c299c35
32 changed files with 0 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
ARG BASE_VERSION=latest
FROM zokradonh/kopano_base:${BASE_VERSION}
LABEL maintainer=az@zok.xyz \
version="1.0"
# install kopano
RUN apt-get update && apt-get install -y --no-install-recommends \
kopano-server \
kopano-utils \
&& rm -rf /var/cache/apt /var/lib/apt/lists
ADD configure.py /kopano/configure.py
ADD start.sh /kopano/start.sh
RUN chmod a+x /kopano/start.sh
EXPOSE 237/tcp
CMD [ "/kopano/start.sh" ]