Skip to content

Commit

Permalink
don't escape instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
rubys committed Aug 4, 2023
1 parent a493ee0 commit 4012673
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/Dockerfile.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -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) { -%>
Expand Down Expand Up @@ -94,7 +94,7 @@ RUN <%- packagerPrune %>
<% } -%>
<% } -%>
<% if (options.instructions.build) { -%>
<%= options.instructions.build %>
<%- options.instructions.build %>
<% } -%>

Expand Down Expand Up @@ -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) { -%>
Expand Down

0 comments on commit 4012673

Please sign in to comment.