container: simplify container build steps
This reduces the cache hit rate, but caches are invalidated so often that I don't think it matters
This commit is contained in:
parent
a85785220e
commit
b37448e608
2 changed files with 16 additions and 42 deletions
|
@ -40,6 +40,7 @@ packages/backend/assets/instance.css
|
||||||
.gitattributes
|
.gitattributes
|
||||||
.weblate
|
.weblate
|
||||||
animated.svg
|
animated.svg
|
||||||
|
compose.yml
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
docker-compose.example.yml
|
docker-compose.example.yml
|
||||||
title.svg
|
title.svg
|
||||||
|
@ -48,6 +49,7 @@ title.svg
|
||||||
/dev
|
/dev
|
||||||
/docs
|
/docs
|
||||||
/scripts
|
/scripts
|
||||||
|
!/scripts/copy-index.mjs
|
||||||
!/scripts/copy-assets.mjs
|
!/scripts/copy-assets.mjs
|
||||||
biome.json
|
biome.json
|
||||||
CODE_OF_CONDUCT.md
|
CODE_OF_CONDUCT.md
|
||||||
|
|
56
Dockerfile
56
Dockerfile
|
@ -1,56 +1,28 @@
|
||||||
## Install dev and compilation dependencies, build files
|
# Install dev and compilation dependencies, build files
|
||||||
FROM docker.io/node:20-alpine as build
|
FROM docker.io/node:20-alpine AS build
|
||||||
WORKDIR /firefish
|
WORKDIR /firefish
|
||||||
|
|
||||||
# Copy only backend-rs pnpm-related files first, to cache efficiently
|
# Install build tools and work around the linker name issue
|
||||||
COPY package.json pnpm-workspace.yaml ./
|
|
||||||
COPY packages/backend-rs/package.json packages/backend-rs/package.json
|
|
||||||
|
|
||||||
# Install compilation dependencies
|
|
||||||
RUN apk update && apk add --no-cache build-base linux-headers curl ca-certificates python3 perl
|
RUN apk update && apk add --no-cache build-base linux-headers curl ca-certificates python3 perl
|
||||||
|
RUN ln -s $(which gcc) /usr/bin/aarch64-linux-musl-gcc
|
||||||
|
|
||||||
|
# Install Rust toolchain
|
||||||
RUN curl --proto '=https' --tlsv1.2 --silent --show-error --fail https://sh.rustup.rs | sh -s -- -y
|
RUN curl --proto '=https' --tlsv1.2 --silent --show-error --fail https://sh.rustup.rs | sh -s -- -y
|
||||||
ENV PATH="/root/.cargo/bin:${PATH}"
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||||
|
|
||||||
# Copy only backend-rs dependency-related files first, to cache efficiently
|
# Configure pnpm
|
||||||
COPY packages/macro-rs packages/macro-rs/
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
||||||
COPY packages/backend-rs/src/lib.rs packages/backend-rs/src/
|
|
||||||
COPY packages/backend-rs/Cargo.toml packages/backend-rs/Cargo.toml
|
|
||||||
COPY Cargo.toml Cargo.lock ./
|
|
||||||
|
|
||||||
# Configure pnpm, and install backend-rs dependencies
|
# Build
|
||||||
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm --filter backend-rs install
|
|
||||||
RUN cargo fetch --locked --manifest-path Cargo.toml
|
|
||||||
|
|
||||||
# Copy in the rest of the rust files
|
|
||||||
COPY packages/backend-rs packages/backend-rs/
|
|
||||||
|
|
||||||
# Compile backend-rs
|
|
||||||
RUN ln -s $(which gcc) /usr/bin/aarch64-linux-musl-gcc
|
|
||||||
RUN NODE_ENV='production' NODE_OPTIONS='--max_old_space_size=3072' pnpm run --filter backend-rs build
|
|
||||||
|
|
||||||
# Copy/Overwrite index.js to mitigate the bug in napi-rs codegen
|
|
||||||
COPY packages/backend-rs/index.js packages/backend-rs/built/index.js
|
|
||||||
|
|
||||||
# Copy only the dependency-related files first, to cache efficiently
|
|
||||||
COPY packages/backend/package.json packages/backend/package.json
|
|
||||||
COPY packages/client/package.json packages/client/package.json
|
|
||||||
COPY packages/sw/package.json packages/sw/package.json
|
|
||||||
COPY packages/firefish-js/package.json packages/firefish-js/package.json
|
|
||||||
COPY pnpm-lock.yaml ./
|
|
||||||
|
|
||||||
# Install dev mode dependencies for compilation
|
|
||||||
RUN pnpm install --frozen-lockfile
|
|
||||||
|
|
||||||
# Copy in the rest of the files to build
|
|
||||||
COPY . ./
|
COPY . ./
|
||||||
|
RUN pnpm install --frozen-lockfile
|
||||||
# Build other workspaces
|
RUN cargo fetch --locked --manifest-path Cargo.toml
|
||||||
RUN NODE_ENV='production' NODE_OPTIONS='--max_old_space_size=3072' pnpm run --recursive --filter '!backend-rs' build && pnpm run build:assets
|
RUN NODE_ENV='production' NODE_OPTIONS='--max_old_space_size=3072' pnpm run build
|
||||||
|
|
||||||
# Trim down the dependencies to only those for production
|
# Trim down the dependencies to only those for production
|
||||||
RUN find . -path '*/node_modules/*' -delete && pnpm install --prod --frozen-lockfile
|
RUN find . -path '*/node_modules/*' -delete && pnpm install --prod --frozen-lockfile
|
||||||
|
|
||||||
## Runtime container
|
# Runtime container
|
||||||
FROM docker.io/node:20-alpine
|
FROM docker.io/node:20-alpine
|
||||||
WORKDIR /firefish
|
WORKDIR /firefish
|
||||||
|
|
||||||
|
@ -66,7 +38,7 @@ COPY --from=build /firefish/packages/backend/node_modules /firefish/packages/bac
|
||||||
# COPY --from=build /firefish/packages/client/node_modules /firefish/packages/client/node_modules
|
# COPY --from=build /firefish/packages/client/node_modules /firefish/packages/client/node_modules
|
||||||
COPY --from=build /firefish/packages/firefish-js/node_modules /firefish/packages/firefish-js/node_modules
|
COPY --from=build /firefish/packages/firefish-js/node_modules /firefish/packages/firefish-js/node_modules
|
||||||
|
|
||||||
# Copy the finished compiled files
|
# Copy the build artifacts
|
||||||
COPY --from=build /firefish/built /firefish/built
|
COPY --from=build /firefish/built /firefish/built
|
||||||
COPY --from=build /firefish/packages/backend/built /firefish/packages/backend/built
|
COPY --from=build /firefish/packages/backend/built /firefish/packages/backend/built
|
||||||
COPY --from=build /firefish/packages/backend/assets/instance.css /firefish/packages/backend/assets/instance.css
|
COPY --from=build /firefish/packages/backend/assets/instance.css /firefish/packages/backend/assets/instance.css
|
||||||
|
|
Loading…
Reference in a new issue