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 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" 2 7 3 8 WORKDIR /app 4 9 ··· 8 13 9 14 EXPOSE 2481 10 15 11 - CMD ["run", "-A", "src/main.ts"] 16 + CMD ["deno", "run", "-A", "src/main.ts"]