diff --git a/docker/base/Dockerfile.j2 b/docker/base/Dockerfile.j2 index b6158ad..7c25f92 100644 --- a/docker/base/Dockerfile.j2 +++ b/docker/base/Dockerfile.j2 @@ -23,3 +23,8 @@ RUN apt-get update \ COPY sudoers /etc/sudoers RUN chmod 440 /etc/sudoers \ && groupadd microservices + +# Directory to store additional bin and configs needed for bootstrapping of the containers. +RUN mkdir -p /opt/ccp/{etc,bin} \ + && chown -R root:microservices /opt/ccp \ + && chmod -R g+wrx /opt/ccp