From 7cabe6d29a4d1b9b8cd87c057bbf4a75ada28e18 Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Mon, 28 Oct 2024 21:18:05 -0300 Subject: [PATCH] Add `dockerfile` format to snippet --- docs/modules/ROOT/pages/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc index fb4ce45..be9d1e0 100644 --- a/docs/modules/ROOT/pages/index.adoc +++ b/docs/modules/ROOT/pages/index.adoc @@ -85,7 +85,7 @@ Just add the `runtime` dependency to `pom.xml`: If you plan on running in a Docker image we highly recommend you use a pre-built image from Microsoft `mcr.microsoft.com/playwright:v1.48.1` which is based on Ubuntu and already has all libraries and tools necessary for PlayWright. -[source] +[source, dockerfile] ---- FROM mcr.microsoft.com/playwright:v1.48.1-noble WORKDIR /work/ @@ -101,4 +101,4 @@ USER 1001 CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] ---- -include::includes/quarkus-playwright.adoc[leveloffset=+1, opts=optional] \ No newline at end of file +include::includes/quarkus-playwright.adoc[leveloffset=+1, opts=optional]