Skip to content

Instantly share code, notes, and snippets.

@whizyrel
Created May 5, 2024 17:37
Show Gist options
  • Select an option

  • Save whizyrel/68cb822f994123f85eb04a1728ea6949 to your computer and use it in GitHub Desktop.

Select an option

Save whizyrel/68cb822f994123f85eb04a1728ea6949 to your computer and use it in GitHub Desktop.
FROM node:22-alpine3.18
WORKDIR /usr/app
RUN echo << EOF > index.js \
"for (let i = 0; i < 1000; i++);" \
"throw new Error('I deliberately need to crash now...');" \
EOF
CMD ["node", "index.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment