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
|
|
|
|
2023-06-07 19:43:32 +02:00
|
|
|
# Copy only the cargo dependency-related files first, to cache efficiently
|
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
|
|
|
|
|
|
|
# Install cargo dependencies
|
2024-02-12 15:14:23 +01:00
|
|
|
RUN cargo fetch --locked --manifest-path /firefish/packages/backend-rs/Cargo.toml
|
2023-06-07 19:43:32 +02:00
|
|
|
|
2023-02-04 06:38:40 +01:00
|
|
|
# Copy only the dependency-related files first, to cache efficiently
|
|
|
|
COPY package.json pnpm*.yaml ./
|
|
|
|
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
|
2023-07-15 23:21:17 +02:00
|
|
|
COPY packages/firefish-js/package.json packages/firefish-js/package.json
|
2023-10-10 16:35:21 +02:00
|
|
|
COPY packages/megalodon/package.json packages/megalodon/package.json
|
2024-02-12 15:14:23 +01: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
|
2022-08-08 05:32:59 +02:00
|
|
|
|
2023-08-10 02:51:44 +02:00
|
|
|
# Configure pnpm, and install dev mode dependencies for compilation
|
2024-02-14 03:46:25 +01:00
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm install --frozen-lockfile
|
2023-02-04 06:38:40 +01: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
|
|
|
|
2023-06-22 04:58:02 +02:00
|
|
|
# Copy in the rest of the files to compile
|
2023-02-04 06:38:40 +01:00
|
|
|
COPY . ./
|
2024-02-15 06:02:25 +01:00
|
|
|
RUN NODE_ENV='production' pnpm run --filter firefish-js build
|
|
|
|
RUN NODE_ENV='production' pnpm run --recursive --parallel --filter '!backend-rs' --filter '!firefish-js' build && pnpm run gulp
|
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" ]
|