mirror of
https://github.com/vim/vim.git
synced 2026-05-07 12:50:06 -04:00
1ce03d674a
Allow for docker comments to be interspersed in a multiline (continued) RUN command argument. fixes: #8364 closes: #19829 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
15 lines
414 B
Docker
15 lines
414 B
Docker
# Issue #8364 (Docker syntax highlighting - Comments break up RUN highlighting
|
|
# in multi-line mode)
|
|
|
|
FROM debian:10.3
|
|
|
|
RUN apt-get update -y \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get install -y curl grep sed unzip git sudo jq gettext \
|
|
# Azure CLI
|
|
&& cd /tmp \
|
|
&& curl -sL https://aka.ms/InstallAzureCLIDeb | bash \
|
|
# Clean-up Apt Caches
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists
|