Skip to content

Add "procps" back for "rabbitmqctl wait" #309

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions 3.7-rc/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@
# especially for the enterprises that we, the RabbitMQ team, have to deal with
FROM ubuntu:18.04

# grab gosu for easy step-down from root
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends gosu; \
apt-get install -y --no-install-recommends \
# grab gosu for easy step-down from root
gosu \
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
procps \
; \
rm -rf /var/lib/apt/lists/*; \
# verify that the binary works
# verify that the "gosu" binary works
gosu nobody true

# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
Expand Down
10 changes: 7 additions & 3 deletions 3.7/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@
# especially for the enterprises that we, the RabbitMQ team, have to deal with
FROM ubuntu:18.04

# grab gosu for easy step-down from root
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends gosu; \
apt-get install -y --no-install-recommends \
# grab gosu for easy step-down from root
gosu \
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
procps \
; \
rm -rf /var/lib/apt/lists/*; \
# verify that the binary works
# verify that the "gosu" binary works
gosu nobody true

# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
Expand Down
10 changes: 7 additions & 3 deletions 3.8-rc/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@
# especially for the enterprises that we, the RabbitMQ team, have to deal with
FROM ubuntu:18.04

# grab gosu for easy step-down from root
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends gosu; \
apt-get install -y --no-install-recommends \
# grab gosu for easy step-down from root
gosu \
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
procps \
; \
rm -rf /var/lib/apt/lists/*; \
# verify that the binary works
# verify that the "gosu" binary works
gosu nobody true

# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
Expand Down
10 changes: 7 additions & 3 deletions Dockerfile-ubuntu.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@
# especially for the enterprises that we, the RabbitMQ team, have to deal with
FROM ubuntu:18.04

# grab gosu for easy step-down from root
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends gosu; \
apt-get install -y --no-install-recommends \
# grab gosu for easy step-down from root
gosu \
# grab "ps" for "rabbitmqctl wait" (https://github.com/docker-library/rabbitmq/issues/162)
procps \
; \
rm -rf /var/lib/apt/lists/*; \
# verify that the binary works
# verify that the "gosu" binary works
gosu nobody true

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