From b35abe2a3d5ad6e2f6a2a29adb8825bf5d005931 Mon Sep 17 00:00:00 2001 From: Salim Djerbouh <13698160+CaddyDz@users.noreply.github.com> Date: Thu, 9 Feb 2023 16:25:26 +0100 Subject: [PATCH] Comply to convention (#16695) As per [the docs](https://docs.docker.com/engine/reference/builder/#parser-directives:~:text=Convention%20is%20also%20to%20include%20a%20blank%20line%20following%20any%20parser%20directives.) > Convention is also to include a blank line following any parser directives. --- get-started/02_our_app.md | 1 + 1 file changed, 1 insertion(+) diff --git a/get-started/02_our_app.md b/get-started/02_our_app.md index a2d46c0406..66e5b3b2fa 100644 --- a/get-started/02_our_app.md +++ b/get-started/02_our_app.md @@ -78,6 +78,7 @@ In order to build the [container image](../get-started/overview.md/#docker-objec ```dockerfile # syntax=docker/dockerfile:1 + FROM node:18-alpine WORKDIR /app COPY . .