forked from GitHubMirrors/silverbullet-icalendar
All checks were successful
Build SilverBullet Plug / build (push) Successful in 33s
8 lines
150 B
Docker
8 lines
150 B
Docker
FROM denoland/deno:latest
|
|
WORKDIR /app
|
|
COPY . .
|
|
# Explicitly fetch dependencies
|
|
RUN deno install
|
|
RUN deno task build
|
|
CMD ["cat", "icalendar.plug.js"]
|