A decentralized music tracking and discovery platform built on AT Protocol 馃幍
listenbrainz
spotify
atproto
lastfm
musicbrainz
scrobbling
1FROM node:22
2
3RUN apt-get update && apt-get install -y curl
4
5RUN curl -fsSL https://bun.sh/install | bash
6
7RUN npm install -g turbo
8
9ENV PATH="/root/.bun/bin:${PATH}"
10
11WORKDIR /app
12
13COPY ./apps ./apps
14
15COPY ./crates ./crates
16
17COPY ./package.json ./package.json
18
19COPY ./bun.lock ./bun.lock
20
21COPY ./turbo.json ./turbo.json
22
23RUN bun install
24
25EXPOSE 8000
26
27EXPOSE 3004
28
29CMD ["turbo", "db:migrate", "prod:all", "--filter=@rocksky/api"]