Docker Codeblock Highlight
Add this to the head of your HTML Page, or
add Shiki.
<script src="https://esm.sh/[email protected]" defer async></script> Edit the codeblock.
FROM node:14
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]Copy paste this.
