2023-02-04 06:38:40 +01:00
|
|
|
## Install dev and compilation dependencies, build files
|
2024-03-07 11:52:02 +01:00
|
|
|
FROM docker.io/node:20-alpine as build
|
2023-07-03 00:18:30 +02:00
|
|
|
WORKDIR /firefish
|
2018-10-09 08:09:50 +02:00
|
|
|
|
2023-02-04 06:38:40 +01:00
|
|
|
# Install compilation dependencies
|
2024-04-27 00:04:50 +02:00
|
|
|
RUN apk update && apk add --no-cache build-base linux-headers curl ca-certificates python3 perl
|
2024-02-07 15:36:37 +01:00
|
|
|
RUN curl --proto '=https' --tlsv1.2 --silent --show-error --fail https://sh.rustup.rs | sh -s -- -y
|
|
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
2021-09-04 19:18:12 +02:00
|
|
|
|
2024-05-10 22:39:09 +02:00
|
|
|
# Copy only backend-rs dependency-related files first, to cache efficiently
|
2024-05-11 12:13:45 +02:00
|
|
|
COPY package.json pnpm-workspace.yaml ./
|
2024-05-10 22:39:09 +02:00
|
|
|
COPY packages/backend-rs/package.json packages/backend-rs/package.json
|
|
|
|
COPY packages/backend-rs/npm/linux-x64-musl/package.json packages/backend-rs/npm/linux-x64-musl/package.json
|
|
|
|
COPY packages/backend-rs/npm/linux-arm64-musl/package.json packages/backend-rs/npm/linux-arm64-musl/package.json
|
|
|
|
|
2024-04-11 20:24:13 +02:00
|
|
|
COPY Cargo.toml Cargo.toml
|
|
|
|
COPY Cargo.lock Cargo.lock
|
2024-02-12 15:14:23 +01:00
|
|
|
COPY packages/backend-rs/Cargo.toml packages/backend-rs/Cargo.toml
|
|
|
|
COPY packages/backend-rs/src/lib.rs packages/backend-rs/src/
|
2024-04-12 16:03:40 +02:00
|
|
|
COPY packages/macro-rs/Cargo.toml packages/macro-rs/Cargo.toml
|
|
|
|
COPY packages/macro-rs/src/lib.rs packages/macro-rs/src/
|
2023-06-07 19:43:32 +02:00
|
|
|
|
2024-05-10 22:39:09 +02:00
|
|
|
# Configure pnpm, and install backend-rs dependencies
|
2024-05-11 12:13:45 +02:00
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm --filter backend-rs install
|
2024-05-11 12:30:00 +02:00
|
|
|
RUN cargo fetch --locked --manifest-path Cargo.toml
|
2023-06-07 19:43:32 +02:00
|
|
|
|
2024-02-12 15:14:23 +01:00
|
|
|
# Copy in the rest of the rust files
|
|
|
|
COPY packages/backend-rs packages/backend-rs/
|
2024-04-26 23:09:05 +02:00
|
|
|
# COPY packages/macro-rs packages/macro-rs/
|
2023-06-22 19:16:59 +02:00
|
|
|
|
2024-02-12 15:14:23 +01:00
|
|
|
# Compile backend-rs
|
2024-02-15 06:02:25 +01:00
|
|
|
RUN NODE_ENV='production' pnpm run --filter backend-rs build
|
2023-06-22 19:16:59 +02:00
|
|
|
|
2024-04-30 13:50:39 +02:00
|
|
|
# Copy/Overwrite index.js to mitigate the bug in napi-rs codegen
|
|
|
|
COPY packages/backend-rs/index.js packages/backend-rs/built/index.js
|
|
|
|
|
2024-05-10 22:39:09 +02:00
|
|
|
# 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 packages/megalodon/package.json packages/megalodon/package.json
|
2024-05-11 12:13:45 +02:00
|
|
|
COPY pnpm-lock.yaml ./
|
2024-05-10 22:39:09 +02:00
|
|
|
|
|
|
|
# Install dev mode dependencies for compilation
|
|
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
|
|
|
|
# Copy in the rest of the files to build
|
2023-02-04 06:38:40 +01:00
|
|
|
COPY . ./
|
2024-05-10 22:39:09 +02:00
|
|
|
|
|
|
|
# Build other workspaces
|
|
|
|
RUN NODE_ENV='production' pnpm run --recursive --filter '!backend-rs' build && pnpm run build:assets
|
2023-02-04 06:38:40 +01:00
|
|
|
|
2023-06-22 19:16:59 +02:00
|
|
|
# Trim down the dependencies to only those for production
|
2024-02-14 03:46:25 +01:00
|
|
|
RUN find . -path '*/node_modules/*' -delete && pnpm install --prod --frozen-lockfile
|
2023-02-04 06:38:40 +01:00
|
|
|
|
|
|
|
## Runtime container
|
2024-03-07 11:52:02 +01:00
|
|
|
FROM docker.io/node:20-alpine
|
2023-07-03 00:18:30 +02:00
|
|
|
WORKDIR /firefish
|
2023-02-04 06:38:40 +01:00
|
|
|
|
|
|
|
# Install runtime dependencies
|
2024-03-23 13:55:17 +01:00
|
|
|
RUN apk update && apk add --no-cache zip unzip tini ffmpeg curl
|
2023-02-04 06:38:40 +01:00
|
|
|
|
|
|
|
COPY . ./
|
2018-10-30 13:18:03 +01:00
|
|
|
|
2023-10-10 16:35:21 +02:00
|
|
|
COPY --from=build /firefish/packages/megalodon /firefish/packages/megalodon
|
|
|
|
|
2023-02-04 06:38:40 +01:00
|
|
|
# Copy node modules
|
2023-07-03 00:18:30 +02:00
|
|
|
COPY --from=build /firefish/node_modules /firefish/node_modules
|
|
|
|
COPY --from=build /firefish/packages/backend/node_modules /firefish/packages/backend/node_modules
|
2024-02-14 03:46:25 +01:00
|
|
|
# COPY --from=build /firefish/packages/sw/node_modules /firefish/packages/sw/node_modules
|
|
|
|
# COPY --from=build /firefish/packages/client/node_modules /firefish/packages/client/node_modules
|
2023-07-03 00:18:30 +02:00
|
|
|
COPY --from=build /firefish/packages/firefish-js/node_modules /firefish/packages/firefish-js/node_modules
|
2023-02-04 06:38:40 +01:00
|
|
|
|
|
|
|
# Copy the finished compiled files
|
2023-07-03 00:18:30 +02:00
|
|
|
COPY --from=build /firefish/built /firefish/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
|
2024-02-12 15:14:23 +01:00
|
|
|
COPY --from=build /firefish/packages/backend-rs/built /firefish/packages/backend-rs/built
|
2023-02-04 06:38:40 +01:00
|
|
|
|
2023-06-22 04:58:02 +02:00
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
2023-06-22 08:00:28 +02:00
|
|
|
ENV NODE_ENV=production
|
2023-07-03 00:18:30 +02:00
|
|
|
VOLUME "/firefish/files"
|
2024-03-07 11:52:02 +01:00
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
2024-02-22 19:18:32 +01:00
|
|
|
CMD [ "pnpm", "run", "start:container" ]
|