2023-02-04 06:38:40 +01:00
|
|
|
## Install dev and compilation dependencies, build files
|
2023-10-25 18:44:56 +02:00
|
|
|
FROM node:20 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
|
2023-08-10 02:51:44 +02:00
|
|
|
RUN apt-get update && apt-get install -y libvips42 python3 git wget curl build-essential
|
|
|
|
RUN mkdir -m777 /opt/rust /opt/cargo
|
|
|
|
ENV RUSTUP_HOME=/opt/rust CARGO_HOME=/opt/cargo PATH=/opt/cargo/bin:$PATH
|
|
|
|
RUN wget --https-only --secure-protocol=TLSv1_2 -O- https://sh.rustup.rs | sh /dev/stdin -y
|
|
|
|
RUN printf '#!/bin/sh\nexport CARGO_HOME=/opt/cargo\nexec /bin/sh "$@"\n' >/usr/local/bin/sh
|
|
|
|
RUN chmod +x /usr/local/bin/sh
|
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
|
|
|
|
COPY packages/backend/native-utils/Cargo.toml packages/backend/native-utils/Cargo.toml
|
|
|
|
COPY packages/backend/native-utils/Cargo.lock packages/backend/native-utils/Cargo.lock
|
2023-06-22 19:16:59 +02:00
|
|
|
COPY packages/backend/native-utils/src/lib.rs packages/backend/native-utils/src/
|
2023-06-07 19:43:32 +02:00
|
|
|
COPY packages/backend/native-utils/migration/Cargo.toml packages/backend/native-utils/migration/Cargo.toml
|
2023-06-22 19:16:59 +02:00
|
|
|
COPY packages/backend/native-utils/migration/src/lib.rs packages/backend/native-utils/migration/src/
|
2023-06-07 19:43:32 +02:00
|
|
|
|
|
|
|
# Install cargo dependencies
|
2023-07-03 00:18:30 +02:00
|
|
|
RUN cargo fetch --locked --manifest-path /firefish/packages/backend/native-utils/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
|
2023-04-02 06:44:19 +02:00
|
|
|
COPY packages/backend/native-utils/package.json packages/backend/native-utils/package.json
|
2023-04-02 10:59:18 +02:00
|
|
|
COPY packages/backend/native-utils/npm/linux-x64-musl/package.json packages/backend/native-utils/npm/linux-x64-musl/package.json
|
|
|
|
COPY packages/backend/native-utils/npm/linux-arm64-musl/package.json packages/backend/native-utils/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
|
2023-06-22 04:58:02 +02:00
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm i --frozen-lockfile
|
2023-02-04 06:38:40 +01:00
|
|
|
|
2023-06-22 19:16:59 +02:00
|
|
|
# Copy in the rest of the native-utils rust files
|
2023-07-07 04:54:53 +02:00
|
|
|
COPY packages/backend/native-utils packages/backend/native-utils/
|
2023-06-22 19:16:59 +02:00
|
|
|
|
|
|
|
# Compile native-utils
|
|
|
|
RUN pnpm run --filter native-utils build
|
|
|
|
|
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 . ./
|
2023-06-22 19:16:59 +02:00
|
|
|
RUN env NODE_ENV=production sh -c "pnpm run --filter '!native-utils' 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
|
|
|
|
RUN pnpm i --prod --frozen-lockfile
|
2023-02-04 06:38:40 +01:00
|
|
|
|
|
|
|
## Runtime container
|
2023-10-25 18:44:56 +02:00
|
|
|
FROM node:20
|
2023-07-03 00:18:30 +02:00
|
|
|
WORKDIR /firefish
|
2023-02-04 06:38:40 +01:00
|
|
|
|
|
|
|
# Install runtime dependencies
|
2023-08-10 02:51:44 +02:00
|
|
|
RUN apt-get update && apt-get install -y libvips-dev zip unzip tini ffmpeg
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
COPY --from=build /firefish/packages/backend/native-utils/built /firefish/packages/backend/native-utils/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"
|
2023-08-16 05:45:10 +02:00
|
|
|
ENTRYPOINT [ "/usr/bin/tini", "--" ]
|
2023-01-13 05:18:16 +01:00
|
|
|
CMD [ "pnpm", "run", "migrateandstart" ]
|