Files
vim/runtime/syntax/testdir/input/dockerfile.dockerfile
Doug Kearns 1ce03d674a runtime(dockerfile): Update syntax, fix RUN command highlighting
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>
2026-04-26 14:26:19 +00:00

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