Skip to content

Commit

Permalink
build(container): use explicit cmd form
Browse files Browse the repository at this point in the history
does not need a shell to be executed
  • Loading branch information
EdJoPaTo committed Jan 6, 2023
1 parent dae656d commit 7f32d9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ COPY --from=packages /build/node_modules ./node_modules
COPY locales locales
COPY --from=builder /build/dist ./

CMD node --enable-source-maps index.js
ENTRYPOINT ["node", "--enable-source-maps"]
CMD ["index.js"]

0 comments on commit 7f32d9b

Please sign in to comment.