From 40126732a06076590c144acdce7d1232938eab9f Mon Sep 17 00:00:00 2001 From: Sam Ruby Date: Fri, 4 Aug 2023 08:55:47 +0200 Subject: [PATCH] don't escape instructions --- templates/Dockerfile.ejs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/Dockerfile.ejs b/templates/Dockerfile.ejs index f05fbcb..dface81 100644 --- a/templates/Dockerfile.ejs +++ b/templates/Dockerfile.ejs @@ -53,7 +53,7 @@ ARG PNPM_VERSION=<%= pnpmVersion %> RUN npm install -g pnpm@$PNPM_VERSION <% } %> <% if (options.instructions.base) { -%> -<%= options.instructions.base %> +<%- options.instructions.base %> <% } -%> <% if (!distroless) { -%> @@ -94,7 +94,7 @@ RUN <%- packagerPrune %> <% } -%> <% } -%> <% if (options.instructions.build) { -%> -<%= options.instructions.build %> +<%- options.instructions.build %> <% } -%> @@ -154,7 +154,7 @@ RUN echo "#!/bin/sh\nset -x\nsqlite3 \$DATABASE_URL" > /usr/local/bin/database-c <% } -%> <% } -%> <% if (options.instructions.deploy) { -%> -<%= options.instructions.deploy %> +<%- options.instructions.deploy %> <% } -%> <% if (entrypoint) { -%>