mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 07:56:12 +00:00
* add hadolint for dockerfile linting * add hadofile config * add checks for dockerfiles and shellcheck into makefile * shellcheck fixes * add workaround so that .env can be sourced again from version.sh * hadolint fixes * print progress of build/run.sh * fix check for jq in setup.sh relates to #41 and #26
22 lines
370 B
Docker
22 lines
370 B
Docker
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 --no-cache \
|
|
easypki \
|
|
openssl
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
RUN chmod a+x /start.sh
|
|
|
|
CMD ["/start.sh"]
|