2023-02-03 22:38:40 -07:00
|
|
|
## Install dev and compilation dependencies, build files
|
2023-06-21 20:58:02 -06:00
|
|
|
FROM alpine:3.18 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-06-21 20:58:02 -06:00
|
|
|
RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm 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
|
2023-06-22 11:16:59 -06:00
|
|
|
COPY packages/backend/native-utils/src/lib.rs packages/backend/native-utils/src/
|
2023-06-07 11:43:32 -06:00
|
|
|
COPY packages/backend/native-utils/migration/Cargo.toml packages/backend/native-utils/migration/Cargo.toml
|
2023-06-22 11:16:59 -06:00
|
|
|
COPY packages/backend/native-utils/migration/src/lib.rs packages/backend/native-utils/migration/src/
|
2023-06-07 11:43:32 -06:00
|
|
|
|
|
|
|
# Install cargo dependencies
|
2023-06-22 11:16:59 -06:00
|
|
|
RUN cargo fetch --locked --manifest-path /calckey/packages/backend/native-utils/Cargo.toml
|
2023-06-07 11:43:32 -06:00
|
|
|
|
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-07-06 20:54:53 -06:00
|
|
|
COPY packages/megalodon/package.json packages/megalodon/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-06-21 20:58:02 -06:00
|
|
|
# Configure corepack and pnpm, and install dev mode dependencies for compilation
|
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm i --frozen-lockfile
|
2023-02-03 22:38:40 -07:00
|
|
|
|
2023-06-22 11:16:59 -06:00
|
|
|
# Copy in the rest of the native-utils rust files
|
2023-07-06 20:54:53 -06:00
|
|
|
COPY packages/backend/native-utils packages/backend/native-utils/
|
2023-06-22 11:16:59 -06:00
|
|
|
|
|
|
|
# Compile native-utils
|
|
|
|
RUN pnpm run --filter native-utils build
|
|
|
|
|
2023-06-21 20:58:02 -06:00
|
|
|
# Copy in the rest of the files to compile
|
2023-02-03 22:38:40 -07:00
|
|
|
COPY . ./
|
2023-06-22 11:16:59 -06:00
|
|
|
RUN env NODE_ENV=production sh -c "pnpm run --filter '!native-utils' build && pnpm run gulp"
|
2023-02-03 22:38:40 -07:00
|
|
|
|
2023-06-22 11:16:59 -06:00
|
|
|
# Trim down the dependencies to only those for production
|
|
|
|
RUN pnpm i --prod --frozen-lockfile
|
2023-02-03 22:38:40 -07:00
|
|
|
|
|
|
|
## Runtime container
|
2023-06-21 20:58:02 -06:00
|
|
|
FROM alpine:3.18
|
2023-02-03 22:38:40 -07:00
|
|
|
WORKDIR /calckey
|
|
|
|
|
|
|
|
# Install runtime dependencies
|
2023-06-21 20:58:02 -06:00
|
|
|
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
|
2023-02-03 22:38:40 -07:00
|
|
|
|
|
|
|
COPY . ./
|
2018-10-30 06:18:03 -06:00
|
|
|
|
2023-07-07 00:46:50 -06:00
|
|
|
COPY --from=build /calckey/packages/megalodon /calckey/packages/megalodon
|
|
|
|
|
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-02-03 22:38:40 -07:00
|
|
|
|
2023-06-21 20:58:02 -06:00
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
2023-06-22 00:00:28 -06:00
|
|
|
ENV NODE_ENV=production
|
2023-06-22 11:16:59 -06:00
|
|
|
VOLUME "/calckey/files"
|
2022-08-07 21:32:59 -06:00
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
2023-01-12 21:18:16 -07:00
|
|
|
CMD [ "pnpm", "run", "migrateandstart" ]
|