Skip to content
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