Skip to content

Commit ff74887

Browse files
committed
Add "procps" back for "rabbitmqctl wait"
1 parent 8c90668 commit ff74887

File tree

4 files changed

+28
-12
lines changed

4 files changed

+28
-12
lines changed

3.7-rc/ubuntu/Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22
# especially for the enterprises that we, the RabbitMQ team, have to deal with
33
FROM ubuntu:18.04
44

5-
# grab gosu for easy step-down from root
65
RUN set -eux; \
76
apt-get update; \
8-
apt-get install -y --no-install-recommends gosu; \
7+
apt-get install -y --no-install-recommends \
8+
# grab gosu for easy step-down from root
9+
gosu \
10+
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
11+
procps \
12+
; \
913
rm -rf /var/lib/apt/lists/*; \
10-
# verify that the binary works
14+
# verify that the "gosu" binary works
1115
gosu nobody true
1216

1317
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally

3.7/ubuntu/Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22
# especially for the enterprises that we, the RabbitMQ team, have to deal with
33
FROM ubuntu:18.04
44

5-
# grab gosu for easy step-down from root
65
RUN set -eux; \
76
apt-get update; \
8-
apt-get install -y --no-install-recommends gosu; \
7+
apt-get install -y --no-install-recommends \
8+
# grab gosu for easy step-down from root
9+
gosu \
10+
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
11+
procps \
12+
; \
913
rm -rf /var/lib/apt/lists/*; \
10-
# verify that the binary works
14+
# verify that the "gosu" binary works
1115
gosu nobody true
1216

1317
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally

3.8-rc/ubuntu/Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22
# especially for the enterprises that we, the RabbitMQ team, have to deal with
33
FROM ubuntu:18.04
44

5-
# grab gosu for easy step-down from root
65
RUN set -eux; \
76
apt-get update; \
8-
apt-get install -y --no-install-recommends gosu; \
7+
apt-get install -y --no-install-recommends \
8+
# grab gosu for easy step-down from root
9+
gosu \
10+
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
11+
procps \
12+
; \
913
rm -rf /var/lib/apt/lists/*; \
10-
# verify that the binary works
14+
# verify that the "gosu" binary works
1115
gosu nobody true
1216

1317
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally

Dockerfile-ubuntu.template

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22
# especially for the enterprises that we, the RabbitMQ team, have to deal with
33
FROM ubuntu:18.04
44

5-
# grab gosu for easy step-down from root
65
RUN set -eux; \
76
apt-get update; \
8-
apt-get install -y --no-install-recommends gosu; \
7+
apt-get install -y --no-install-recommends \
8+
# grab gosu for easy step-down from root
9+
gosu \
10+
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
11+
procps \
12+
; \
913
rm -rf /var/lib/apt/lists/*; \
10-
# verify that the binary works
14+
# verify that the "gosu" binary works
1115
gosu nobody true
1216

1317
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally

0 commit comments

Comments
 (0)