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