Skip to content

Commit

Permalink
fix(*) command grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
gszr committed Oct 29, 2020
1 parent 0c6e296 commit 786145a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -ex; \
yum install -y -q unzip shadow-utils git \
&& yum clean all -q \
&& rm -fr /var/cache/yum/* /tmp/yum_save*.yumtx /root/.pki \
&& \{ useradd kong || true \} \
&& { useradd kong || true ;} \
&& mkdir -p "/usr/local/kong" \
# Please update the centos install docs if the below line is changed so that
# end users can properly install Kong along with its required dependencies
Expand Down
2 changes: 1 addition & 1 deletion rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN set -ex; \
yum install -y -q unzip shadow-utils \
&& yum clean all -q \
&& rm -fr /var/cache/yum/* /tmp/yum_save*.yumtx /root/.pki \
&& \{ useradd kong || true \} \
&& { useradd kong || true ;} \
&& mkdir -p "/usr/local/kong" \
# Please update the rhel install docs if the below line is changed so that
# end users can properly install Kong along with its required dependencies
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN set -ex; \
&& apt install --yes /tmp/kong.deb \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/kong.deb \
&& \{ useradd -ms /bin/bash kong || true \} \
&& { useradd -ms /bin/bash kong || true ;} \
&& mkdir -p "/usr/local/kong" \
&& chown -R kong:0 /usr/local/kong \
&& chown kong:0 /usr/local/bin/kong \
Expand Down

0 comments on commit 786145a

Please sign in to comment.