diff options
author | Instrumental <jonathan.gathman@att.com> | 2019-04-17 14:30:28 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2019-04-17 14:30:34 -0500 |
commit | fea400a6e11a41e39911927edf37938b5d13f181 (patch) | |
tree | 7119747597fc2c527235876baac29ea12f89d81e /auth/docker/Dockerfile.ms | |
parent | 66424b306877435b7e71e119a8d1498b4b263719 (diff) |
Make OOM workable with Dublin
Issue-ID: AAF-809
Change-Id: I7c2c221e69a87f3bdf6dbf37fc93c1a14a055686
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/docker/Dockerfile.ms')
-rw-r--r-- | auth/docker/Dockerfile.ms | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/auth/docker/Dockerfile.ms b/auth/docker/Dockerfile.ms index ead958b3..351c3798 100644 --- a/auth/docker/Dockerfile.ms +++ b/auth/docker/Dockerfile.ms @@ -25,9 +25,10 @@ LABEL description="aaf_${AAF_COMPONENT}" LABEL version=${AAF_VERSION} COPY bin/pod_wait.sh /opt/app/aaf/bin/ -RUN mkdir -p /opt/app/osaaf -RUN mkdir -p /opt/app/aaf/status -RUN if [ -n "${DUSER}" ]; then chown ${DUSER}:${DUSER} /opt/app/aaf/status \ +RUN mkdir -p /opt/app/osaaf &&\ + mkdir -p /opt/app/aaf/status &&\ + chmod 755 /opt/app/aaf/bin/* &&\ + if [ -n "${DUSER}" ]; then chown ${DUSER}:${DUSER} /opt/app/aaf/status \ && chown ${DUSER}:${DUSER} /opt/app/osaaf \ && chown -R ${DUSER}:${DUSER} /opt/app/aaf; fi |