-
Notifications
You must be signed in to change notification settings - Fork 9
/
Dockerfile.ubuntu
executable file
·91 lines (83 loc) · 2.35 KB
/
Dockerfile.ubuntu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# © Copyright IBM Corporation 2015, 2019
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# FROM ubuntu:22.04
FROM quay.io/stmassey/ubuntu
LABEL maintainer "Sam Massey <[email protected]>"
COPY *.deb /
COPY mqlicense.sh /
COPY lap /lap
RUN export DEBIAN_FRONTEND=noninteractive \
# Install additional packages - do we need/want them all
&& apt-get update -y \
&& apt-get install -y --no-install-recommends \
bash \
bc \
ca-certificates \
coreutils \
curl \
debianutils \
file \
findutils \
gawk \
grep \
libc-bin \
lsb-release \
mount \
passwd \
sed \
tar \
util-linux \
iputils-ping \
sysstat \
procps \
apt-utils \
pcp \
vim \
iproute2 \
&& rm -rf /var/lib/apt/lists/* \
# Update the command prompt
&& echo "cph" > /etc/debian_chroot \
&& groupadd --system --gid 1000 mqm \
&& useradd --system --uid 1000 --gid mqm mqperf \
&& usermod -a -G root mqperf \
&& mkdir -p /home/mqperf/cph \
&& chown -R mqperf:root /home/mqperf/cph \
&& chmod -R g+w /home/mqperf/cph \
&& echo "cd ~/cph" >> /home/mqperf/.bashrc \
&& service pmcd start
RUN export DEBIAN_FRONTEND=noninteractive \
&& ./mqlicense.sh -accept \
&& dpkg -i ibmmq-runtime_9.4.0.0_amd64.deb \
&& dpkg -i ibmmq-gskit_9.4.0.0_amd64.deb \
&& dpkg -i ibmmq-client_9.4.0.0_amd64.deb \
&& chown -R mqperf:root /opt/mqm/* \
&& chown -R mqperf:root /var/mqm/* \
&& chmod o+w /var/mqm
COPY cph/* /home/mqperf/cph/
COPY ssl/* /opt/mqm/ssl/
COPY *.sh /home/mqperf/cph/
COPY *.mqsc /home/mqperf/cph/
COPY qmmonitor2 /home/mqperf/cph/
USER mqperf
WORKDIR /home/mqperf/cph
ENV MQ_QMGR_NAME=PERF0
ENV MQ_QMGR_PORT=1420
ENV MQ_QMGR_CHANNEL=SYSTEM.DEF.SVRCONN
ENV MQ_QMGR_QREQUEST_PREFIX=REQUEST
ENV MQ_QMGR_QREPLY_PREFIX=REPLY
ENV MQ_NON_PERSISTENT=
ENV MQ_CPH_EXTRA=
ENV MQ_USERID=
ENV MQ_COMPRESS=
ENTRYPOINT ["./cphTest.sh"]