penguin/monok8s

k8s image for Mono Gateway Dev Kit

docker/cmm.Dockerfile

raw ยท 381 bytes

ARG ALPINE_SERIES=3.23
FROM alpine:${ALPINE_SERIES}

COPY ./out/ASK/rootfs-cfg/etc /etc
COPY ./out/ASK/bin/cmm /bin/cmm
COPY ./out/ASK/bin/dpa_app /bin/dpa_app
COPY ./ask/cmm/cmm.conf /etc/cmm/cmm.conf
COPY ./ask/cmm/entrypoint.sh /entrypoint.sh
COPY ./ask/cmm/init_dpa.sh /init_dpa.sh

RUN chmod +x /bin/cmm /bin/dpa_app /init_dpa.sh /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]