mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
62 lines
3 KiB
Docker
62 lines
3 KiB
Docker
## Install dev and compilation dependencies, build files
|
|
FROM alpine:3.18 as build
|
|
WORKDIR /calckey
|
|
|
|
# Install compilation dependencies
|
|
RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm rust cargo vips
|
|
|
|
# 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
|
|
|
|
# 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
|
|
COPY packages/calckey-js/package.json packages/calckey-js/package.json
|
|
COPY packages/backend/native-utils/package.json packages/backend/native-utils/package.json
|
|
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
|
|
|
|
# Configure corepack and pnpm, and install dev mode dependencies for compilation
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm i --frozen-lockfile
|
|
|
|
# Copy in the rest of the files to compile
|
|
COPY . ./
|
|
RUN pnpm run build
|
|
|
|
# Trim down the artifacts and dependencies to only the prod deps
|
|
RUN cargo clean --manifest-path /calckey/packages/backend/native-utils/Cargo.toml && pnpm i --prod --frozen-lockfile
|
|
|
|
## Runtime container
|
|
FROM alpine:3.18
|
|
WORKDIR /calckey
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
|
|
|
|
COPY . ./
|
|
|
|
# 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
|
|
COPY --from=build /calckey/packages/calckey-js/node_modules /calckey/packages/calckey-js/node_modules
|
|
|
|
# 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
|
|
COPY --from=build /calckey/packages/backend/native-utils/built /calckey/packages/backend/native-utils/built
|
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
|
CMD [ "pnpm", "run", "migrateandstart" ]
|