aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorjhh <jorge.hernandez-herrero@att.com>2019-04-25 22:58:37 -0500
committerjhh <jorge.hernandez-herrero@att.com>2019-04-25 23:27:35 -0500
commitfa324fe235bbba668adeb147ffca27a4124b5af9 (patch)
tree5fab8e2ce060a8648323f3732a53707bfad7beaf /packages
parentb38e59b1f797b15d0a3e1170e43a0db92216bbd0 (diff)
Manually pull the base alpine images
Add a hack to undo directory creation from parent images since it causes container initialization to fail. Change-Id: I99dc404cd56a67a2cc84eb1a3773b028ed533d95 Issue-ID: INT-998 Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'packages')
-rw-r--r--packages/docker/src/main/docker/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/docker/src/main/docker/Dockerfile b/packages/docker/src/main/docker/Dockerfile
index 66aff075e..69639ccfe 100644
--- a/packages/docker/src/main/docker/Dockerfile
+++ b/packages/docker/src/main/docker/Dockerfile
@@ -9,7 +9,9 @@ ENV POLICY_LOGS ${POLICY_LOGS}
RUN apk add --no-cache mariadb-client
RUN mkdir -p /tmp/policy-install ${POLICY_LOGS} && \
- chown policy:policy /tmp/policy-install ${POLICY_LOGS}
+ chown policy:policy /tmp/policy-install ${POLICY_LOGS} && \
+ rmdir ${POLICY_HOME}/etc/ssl && \
+ rmdir ${POLICY_HOME}/etc
WORKDIR /tmp/policy-install