forked from GitHubMirrors/silverbullet-icalendar
All checks were successful
Build SilverBullet Plug / build (push) Successful in 25s
6 lines
217 B
Docker
6 lines
217 B
Docker
FROM denoland/deno:latest
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN deno run -A https://github.com/silverbulletmd/silverbullet/releases/download/2.4.1/plug-compile.js -c deno.json icalendar.plug.yaml
|
|
CMD ["cat", "icalendar.plug.js"]
|