-1
.dockerignore
-1
.dockerignore
+11
apps/aqua/Dockerfile
+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
+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