File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,10 @@ RUN export DEBIAN_FRONTEND=noninteractive \
70
70
# Clean up all the downloaded files
71
71
&& rm -f /etc/apt/sources.list.d/IBM_MQ.list \
72
72
&& rm -rf /tmp/mq \
73
+ # Apply any bug fixes not included in base Ubuntu or MQ image.
74
+ # Don't upgrade everything based on Docker best practices https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#run
75
+ && apt-get upgrade -y libc6 \
76
+ # End of bug fixes
73
77
&& rm -rf /var/lib/apt/lists/* \
74
78
# Optional: Update the command prompt with the MQ version
75
79
&& echo "mq:$(dspmqver -b -f 2)" > /etc/debian_chroot \
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ if ! getent group mqclient; then
127
127
fi
128
128
configure_os_user 1002 1002 MQ_APP_NAME MQ_APP_PASSWORD /home/app
129
129
# Set authorities to give access to qmgr, queues and topic
130
- su -l mqm -c " setmqaut -m $1 -t qmgr -g mqclient +connect"
130
+ su -l mqm -c " setmqaut -m $1 -t qmgr -g mqclient +connect +inq "
131
131
su -l mqm -c " setmqaut -m $1 -n \" DEV.**\" -t queue -g mqclient +put +get +browse"
132
132
su -l mqm -c " setmqaut -m $1 -n \" DEV.**\" -t topic -g mqclient +sub +pub"
133
133
You can’t perform that action at this time.
0 commit comments