A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz

Use Node base image and install Deno

Replace denoland/deno with node:24, add DENO_INSTALL and PATH env
vars, and update CMD to invoke the deno binary

+7 -2
+7 -2
tap/Dockerfile
··· 1 - FROM denoland/deno:2.6.5 2 3 WORKDIR /app 4 ··· 8 9 EXPOSE 2481 10 11 - CMD ["run", "-A", "src/main.ts"]
··· 1 + FROM node:24 2 + 3 + RUN curl -fsSL https://deno.land/install.sh | sh 4 + 5 + ENV DENO_INSTALL="/root/.deno" 6 + ENV PATH="$DENO_INSTALL/bin:$PATH" 7 8 WORKDIR /app 9 ··· 13 14 EXPOSE 2481 15 16 + CMD ["deno", "run", "-A", "src/main.ts"]