You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# like jekyll, convert `README.md` to `index.html`
RUN echo 'import showdown from "https://esm.archive.org/showdown"; Deno.writeTextFileSync("index.html", new showdown.Converter({ completeHTMLDocument: true, tables: true, metadata: true }).makeHtml(Deno.readTextFileSync("README.md")))' | deno run -A -
# cache JS files we'll use
RUN deno cache --allow-import ./index.js
# fire up minimal webserver that serves static files & handles arbitrary routes to JS