[READ-ONLY] Mirror of https://github.com/FoxxMD/komodo-utilities. Small utilities to enhance Komodo
gotify komodo
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: Update all dockerfiles to install and cache dependencies in build

FoxxMD (Dec 13, 2024, 11:25 AM EST) 017f5403 f6c34712

+12 -3
+3
notifiers/discord/Dockerfile
··· 13 13 COPY notifiers/common/ notifiers/common/ 14 14 COPY notifiers/discord/ notifiers/discord/ 15 15 16 + RUN deno install --entrypoint notifiers/discord/main.ts 17 + RUN deno cache notifiers/discord/main.ts 18 + 16 19 CMD ["run", "--allow-net", "--allow-env", "notifiers/discord/main.ts"]
+3
notifiers/gotify/Dockerfile
··· 13 13 COPY notifiers/common/ notifiers/common/ 14 14 COPY notifiers/gotify/ notifiers/gotify/ 15 15 16 + RUN deno install --entrypoint notifiers/gotify/main.ts 17 + RUN deno cache notifiers/gotify/main.ts 18 + 16 19 CMD ["run", "--allow-net", "--allow-env", "notifiers/gotify/main.ts"]
+6 -3
notifiers/ntfy/Dockerfile
··· 9 9 USER deno 10 10 11 11 # These steps will be re-run upon each file change in your working directory: 12 - COPY common/ common/ 13 - COPY notifiers/common/ notifiers/common/ 14 - COPY notifiers/ntfy/ notifiers/ntfy/ 12 + COPY common/ common/ 13 + COPY notifiers/common/ notifiers/common/ 14 + COPY notifiers/ntfy/ notifiers/ntfy/ 15 + 16 + RUN deno install --entrypoint notifiers/ntfy/main.ts 17 + RUN deno cache notifiers/ntfy/main.ts 15 18 16 19 CMD ["run", "--allow-net", "--allow-env", "notifiers/ntfy/main.ts"]