Skip to content

Commit a67e6c6

Browse files
committed
semicolon
1 parent fdf80c7 commit a67e6c6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docker/enterprise/4.2/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ RUN mkdir /docker-entrypoint-initdb.d
7171

7272
ENV GPG_KEYS E162F504A20CDF15827F718D4B7C549A058F8B6B
7373
RUN set -ex; \
74-
apt-get install -y --no-install-recommends wget \
74+
apt-get install -y --no-install-recommends wget; \
7575
# pull from pgp.mongodb.com rather than a keyserver which is not supported.
7676
# (although apt-key is deprecated on newer ubuntu/debian.)
77-
wget -qO - https://pgp.mongodb.com/server-4.2.asc | apt-key add - \
77+
wget -qO - https://pgp.mongodb.com/server-4.2.asc | apt-key add -; \
7878
export GNUPGHOME="$(mktemp -d)"; \
7979
echo "disable-ipv6" >> "${GNUPGHOME}/dirmngr.conf"; \
8080
for key in $GPG_KEYS; do \

docker/enterprise/4.4/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ RUN mkdir /docker-entrypoint-initdb.d
7171

7272
ENV GPG_KEYS 20691EEC35216C63CAF66CE1656408E390CFB1F5
7373
RUN set -ex; \
74-
apt-get install -y --no-install-recommends wget \
74+
apt-get install -y --no-install-recommends wget; \
7575
# pull from pgp.mongodb.com rather than a keyserver which is not supported.
7676
# (although apt-key is deprecated on newer ubuntu/debian.)
77-
wget -qO - https://pgp.mongodb.com/server-4.4.asc | apt-key add - \
77+
wget -qO - https://pgp.mongodb.com/server-4.4.asc | apt-key add -; \
7878
export GNUPGHOME="$(mktemp -d)"; \
7979
echo "disable-ipv6" >> "${GNUPGHOME}/dirmngr.conf"; \
8080
for key in $GPG_KEYS; do \

docker/enterprise/5.0/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ RUN set -ex; \
7474
RUN mkdir /docker-entrypoint-initdb.d
7575

7676
RUN set -ex; \
77-
apt-get install -y --no-install-recommends wget \
77+
apt-get install -y --no-install-recommends wget; \
7878
# pull from pgp.mongodb.com rather than a keyserver which is not supported.
7979
# (although apt-key is deprecated on newer ubuntu/debian.)
80-
wget -qO - https://pgp.mongodb.com/server-5.0.asc | apt-key add - \
80+
wget -qO - https://pgp.mongodb.com/server-5.0.asc | apt-key add -; \
8181
export GNUPGHOME="$(mktemp -d)"; \
8282
set -- 'F5679A222C647C87527C2F8CB00A0BD1E2C63C11'; \
8383
for key; do \

0 commit comments

Comments
 (0)