2024-07-24 18:31:17 +02:00
|
|
|
# Install dev and compilation dependencies, build files
|
|
|
|
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
|
|
|
|
2024-07-24 18:31:17 +02:00
|
|
|
# Install build tools and work around the linker name issue
|
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-06-23 08:06:43 +02:00
|
|
|
RUN ln -s $(which gcc) /usr/bin/aarch64-linux-musl-gcc
|
2023-06-22 19:16:59 +02:00
|
|
|
|
2024-07-24 18:31:17 +02:00
|
|
|
# Install Rust toolchain
|
|
|
|
RUN curl --proto '=https' --tlsv1.2 --silent --show-error --fail https://sh.rustup.rs | sh -s -- -y
|
|
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
2024-05-10 22:39:09 +02:00
|
|
|
|
2024-07-24 18:31:17 +02:00
|
|
|
# Configure pnpm
|
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
2024-05-10 22:39:09 +02:00
|
|
|
|
2024-07-24 18:31:17 +02:00
|
|
|
# Build
|
2023-02-04 06:38:40 +01:00
|
|
|
COPY . ./
|
2024-07-24 18:31:17 +02:00
|
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
RUN cargo fetch --locked --manifest-path Cargo.toml
|
|
|
|
RUN NODE_ENV='production' NODE_OPTIONS='--max_old_space_size=3072' pnpm run build
|
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
|
|
|
|
2024-07-24 18:31:17 +02: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-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
|
|
|
|
2024-07-24 18:31:17 +02:00
|
|
|
# Copy the build artifacts
|
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
|
2024-05-22 13:29:54 +02:00
|
|
|
COPY --from=build /firefish/packages/firefish-js/built /firefish/packages/firefish-js/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" ]
|