1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-07 16:06:14 +00:00
kopano-docker/ssl/Dockerfile
Felix Bartels 5dd163467d
Add tag to kopano_ssl image (#152)
switch kopano_ssl from apline:latest to alpine:3.9
add tagging and publishing of tag to Makefile
update version of Konnect and Kweb since they have been update meanwhile
2019-05-10 20:30:37 +02:00

23 lines
388 B
Docker

FROM alpine:3.9
ENV CODE_VERSION=1.0
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 --no-cache \
easypki \
openssl
COPY start.sh /start.sh
RUN chmod a+x /start.sh
CMD ["/start.sh"]