tangled
alpha
login
or
join now
teal.fm
/
teal
110
fork
atom
Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
110
fork
atom
overview
issues
pulls
pipelines
more ci???
Natalie B.
7 months ago
173c19f2
7220b79c
+22
-1
3 changed files
expand all
collapse all
unified
split
.dockerignore
apps
aqua
Dockerfile
services
cadet
Dockerfile
-1
.dockerignore
···
14
14
.next/
15
15
16
16
# Development and cache files
17
17
-
.git/
18
17
.gitignore
19
18
**/.DS_Store
20
19
*.log
+11
apps/aqua/Dockerfile
···
32
32
33
33
COPY ./ .
34
34
35
35
+
# Setup lexicons and install dependencies
36
36
+
RUN ./scripts/setup-lexicons.sh
37
37
+
38
38
+
# Install Node.js and pnpm for lexicon generation
39
39
+
RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
40
40
+
RUN npm install -g pnpm
41
41
+
42
42
+
# Install dependencies and generate lexicons
43
43
+
RUN pnpm install
44
44
+
RUN pnpm lex:gen --rust-only
45
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
35
+
# Setup lexicons and install dependencies
36
36
+
RUN ./scripts/setup-lexicons.sh
37
37
+
38
38
+
# Install Node.js and pnpm for lexicon generation
39
39
+
RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
40
40
+
RUN npm install -g pnpm
41
41
+
42
42
+
# Install dependencies and generate lexicons
43
43
+
RUN pnpm install
44
44
+
RUN pnpm lex:gen --rust-only
45
45
+
35
46
# Install cross-compilation toolchains
36
47
RUN rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
37
48