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
+23
View File
@@ -0,0 +1,23 @@
FROM alpine:latest
LABEL maintainer=az@zok.xyz \
version="1.0"
RUN mkdir -p /kopano/easypki /kopano/ssl /kopano/ssl/clients
WORKDIR /kopano/easypki
ENV PKI_ROOT /kopano/easypki
ENV PKI_ORGANIZATION Internal Kopano System
ENV PKI_COUNTRY DE
RUN apk add --update \
easypki \
openssl \
&& rm -rf /var/cache/apk/*
COPY start.sh /start.sh
COPY gencerts.sh /gencerts.sh
RUN chmod a+x /start.sh /gencerts.sh
CMD ["/start.sh"]