File tree Expand file tree Collapse file tree 4 files changed +28
-12
lines changed Expand file tree Collapse file tree 4 files changed +28
-12
lines changed Original file line number Diff line number Diff line change 2
2
# especially for the enterprises that we, the RabbitMQ team, have to deal with
3
3
FROM ubuntu:18.04
4
4
5
- # grab gosu for easy step-down from root
6
5
RUN set -eux; \
7
6
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
+ ; \
9
13
rm -rf /var/lib/apt/lists/*; \
10
- # verify that the binary works
14
+ # verify that the "gosu" binary works
11
15
gosu nobody true
12
16
13
17
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
Original file line number Diff line number Diff line change 2
2
# especially for the enterprises that we, the RabbitMQ team, have to deal with
3
3
FROM ubuntu:18.04
4
4
5
- # grab gosu for easy step-down from root
6
5
RUN set -eux; \
7
6
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
+ ; \
9
13
rm -rf /var/lib/apt/lists/*; \
10
- # verify that the binary works
14
+ # verify that the "gosu" binary works
11
15
gosu nobody true
12
16
13
17
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
Original file line number Diff line number Diff line change 2
2
# especially for the enterprises that we, the RabbitMQ team, have to deal with
3
3
FROM ubuntu:18.04
4
4
5
- # grab gosu for easy step-down from root
6
5
RUN set -eux; \
7
6
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
+ ; \
9
13
rm -rf /var/lib/apt/lists/*; \
10
- # verify that the binary works
14
+ # verify that the "gosu" binary works
11
15
gosu nobody true
12
16
13
17
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
Original file line number Diff line number Diff line change 2
2
# especially for the enterprises that we, the RabbitMQ team, have to deal with
3
3
FROM ubuntu:18.04
4
4
5
- # grab gosu for easy step-down from root
6
5
RUN set -eux; \
7
6
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
+ ; \
9
13
rm -rf /var/lib/apt/lists/*; \
10
- # verify that the binary works
14
+ # verify that the "gosu" binary works
11
15
gosu nobody true
12
16
13
17
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
You can’t perform that action at this time.
0 commit comments