2023-02-04 05:38:40 +00:00
|
|
|
## Install dev and compilation dependencies, build files
|
2023-06-07 17:34:23 +00:00
|
|
|
FROM node:20-alpine as build
|
2022-08-23 05:11:29 +00:00
|
|
|
WORKDIR /calckey
|
2018-10-09 06:09:50 +00:00
|
|
|
|
2023-02-04 05:38:40 +00:00
|
|
|
# Install compilation dependencies
|
2023-04-02 09:09:49 +00:00
|
|
|
RUN apk add --no-cache --no-progress git alpine-sdk python3 rust cargo vips
|
2021-09-04 17:18:12 +00:00
|
|
|
|
2023-06-07 17:43:32 +00: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
|
|
|
|
COPY packages/backend/native-utils/migration/Cargo.toml packages/backend/native-utils/migration/Cargo.toml
|
|
|
|
COPY packages/backend/native-utils/src/*.rs packages/backend/native-utils/src/
|
|
|
|
|
|
|
|
# Install cargo dependencies
|
|
|
|
RUN cd packages/backend && \
|
|
|
|
cargo fetch --locked --manifest-path ./native-utils/migration/Cargo.toml
|
|
|
|
|
2023-02-04 05:38:40 +00: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-04-08 00:44:27 +00:00
|
|
|
COPY packages/calckey-js/package.json packages/calckey-js/package.json
|
2023-04-02 04:44:19 +00:00
|
|
|
COPY packages/backend/native-utils/package.json packages/backend/native-utils/package.json
|
2023-04-02 08:59:18 +00: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 03:32:59 +00:00
|
|
|
|
2023-01-13 04:18:16 +00:00
|
|
|
# Configure corepack and pnpm
|
2023-01-13 04:54:33 +00:00
|
|
|
RUN corepack enable
|
|
|
|
RUN corepack prepare pnpm@latest --activate
|
2023-02-04 05:38:40 +00:00
|
|
|
|
|
|
|
# Install dev mode dependencies for compilation
|
2023-01-13 04:18:16 +00:00
|
|
|
RUN pnpm i --frozen-lockfile
|
2022-08-08 03:32:59 +00:00
|
|
|
|
2023-06-07 17:43:32 +00:00
|
|
|
# Copy in the rest of the native-utils rust files
|
|
|
|
COPY packages/backend/native-utils/.cargo packages/backend/native-utils/.cargo
|
|
|
|
COPY packages/backend/native-utils/src packages/backend/native-utils/src
|
|
|
|
COPY packages/backend/native-utils/migration packages/backend/native-utils/migration
|
|
|
|
COPY packages/backend/native-utils/tests packages/backend/native-utils/tests
|
|
|
|
COPY packages/backend/native-utils/*.rs packages/backend/native-utils/
|
|
|
|
|
|
|
|
# native-utils cargo build
|
|
|
|
RUN pnpm run build:cargo
|
|
|
|
|
2023-02-04 05:38:40 +00:00
|
|
|
# Copy in the rest of the files, to compile from TS to JS
|
|
|
|
COPY . ./
|
2023-06-07 17:43:32 +00:00
|
|
|
RUN pnpm run build:recursive
|
|
|
|
RUN pnpm run gulp
|
2018-10-09 06:09:50 +00:00
|
|
|
|
2023-02-04 05:38:40 +00:00
|
|
|
# Trim down the dependencies to only the prod deps
|
|
|
|
RUN pnpm i --prod --frozen-lockfile
|
|
|
|
|
2023-06-07 17:43:32 +00:00
|
|
|
# Clean up the cargo deps
|
|
|
|
RUN rm -rf /calckey/packages/backend/native-utils/target/release/deps
|
2023-02-04 05:38:40 +00:00
|
|
|
|
|
|
|
## Runtime container
|
2023-06-07 17:34:23 +00:00
|
|
|
FROM node:20-alpine
|
2023-02-04 05:38:40 +00:00
|
|
|
WORKDIR /calckey
|
|
|
|
|
|
|
|
# Install runtime dependencies
|
2023-06-04 20:29:24 +00:00
|
|
|
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip rust cargo
|
2023-02-04 05:38:40 +00:00
|
|
|
|
|
|
|
COPY . ./
|
2018-10-30 12:18:03 +00:00
|
|
|
|
2023-02-04 05:38:40 +00:00
|
|
|
# Copy node modules
|
|
|
|
COPY --from=build /calckey/node_modules /calckey/node_modules
|
|
|
|
COPY --from=build /calckey/packages/backend/node_modules /calckey/packages/backend/node_modules
|
|
|
|
COPY --from=build /calckey/packages/sw/node_modules /calckey/packages/sw/node_modules
|
|
|
|
COPY --from=build /calckey/packages/client/node_modules /calckey/packages/client/node_modules
|
2023-04-08 00:44:27 +00:00
|
|
|
COPY --from=build /calckey/packages/calckey-js/node_modules /calckey/packages/calckey-js/node_modules
|
2023-02-04 05:38:40 +00:00
|
|
|
|
|
|
|
# Copy the finished compiled files
|
|
|
|
COPY --from=build /calckey/built /calckey/built
|
|
|
|
COPY --from=build /calckey/packages/backend/built /calckey/packages/backend/built
|
|
|
|
COPY --from=build /calckey/packages/backend/assets/instance.css /calckey/packages/backend/assets/instance.css
|
2023-04-02 09:07:02 +00:00
|
|
|
COPY --from=build /calckey/packages/backend/native-utils/built /calckey/packages/backend/native-utils/built
|
2023-06-07 17:43:32 +00:00
|
|
|
COPY --from=build /calckey/packages/backend/native-utils/target/release /calckey/packages/backend/native-utils/target/release
|
2023-02-04 05:38:40 +00:00
|
|
|
|
|
|
|
RUN corepack enable
|
2022-08-08 03:32:59 +00:00
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
2023-01-13 04:18:16 +00:00
|
|
|
CMD [ "pnpm", "run", "migrateandstart" ]
|