Your music, beautifully tracked. All yours. (coming soon) teal.fm
teal-fm atproto

more ci???

Changed files
+22 -1
apps
aqua
services
cadet
-1
.dockerignore
··· 14 14 .next/ 15 15 16 16 # Development and cache files 17 - .git/ 18 17 .gitignore 19 18 **/.DS_Store 20 19 *.log
+11
apps/aqua/Dockerfile
··· 32 32 33 33 COPY ./ . 34 34 35 + # Setup lexicons and install dependencies 36 + RUN ./scripts/setup-lexicons.sh 37 + 38 + # Install Node.js and pnpm for lexicon generation 39 + RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/* 40 + RUN npm install -g pnpm 41 + 42 + # Install dependencies and generate lexicons 43 + RUN pnpm install 44 + RUN pnpm lex:gen --rust-only 45 + 35 46 # Install cross-compilation toolchains 36 47 RUN rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu 37 48
+11
services/cadet/Dockerfile
··· 32 32 33 33 COPY ./ . 34 34 35 + # Setup lexicons and install dependencies 36 + RUN ./scripts/setup-lexicons.sh 37 + 38 + # Install Node.js and pnpm for lexicon generation 39 + RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/* 40 + RUN npm install -g pnpm 41 + 42 + # Install dependencies and generate lexicons 43 + RUN pnpm install 44 + RUN pnpm lex:gen --rust-only 45 + 35 46 # Install cross-compilation toolchains 36 47 RUN rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu 37 48