jormungandr-bite/Dockerfile

74 lines
3.5 KiB
Docker
Raw Normal View History

## Install dev and compilation dependencies, build files
2023-06-21 20:58:02 -06:00
FROM alpine:3.18 as build
2023-07-21 13:42:51 -06:00
WORKDIR /iceshrimp
# Install compilation dependencies
2023-07-23 19:39:32 -06:00
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm rust cargo vips
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-07-21 13:42:51 -06:00
RUN cargo fetch --locked --manifest-path /iceshrimp/packages/backend/native-utils/Cargo.toml
2023-06-07 11:43:32 -06: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-21 11:33:01 -06:00
COPY packages/iceshrimp-js/package.json packages/iceshrimp-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
2023-07-26 14:27:59 -06:00
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm i
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
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-06-22 11:16:59 -06:00
# Trim down the dependencies to only those for production
2023-07-26 14:27:59 -06:00
RUN pnpm i --prod
## Runtime container
2023-06-21 20:58:02 -06:00
FROM alpine:3.18
2023-07-21 13:42:51 -06:00
WORKDIR /iceshrimp
# 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
COPY . ./
2023-07-21 13:42:51 -06:00
COPY --from=build /iceshrimp/packages/megalodon /iceshrimp/packages/megalodon
# Copy node modules
2023-07-21 13:42:51 -06:00
COPY --from=build /iceshrimp/node_modules /iceshrimp/node_modules
COPY --from=build /iceshrimp/packages/backend/node_modules /iceshrimp/packages/backend/node_modules
COPY --from=build /iceshrimp/packages/sw/node_modules /iceshrimp/packages/sw/node_modules
COPY --from=build /iceshrimp/packages/client/node_modules /iceshrimp/packages/client/node_modules
COPY --from=build /iceshrimp/packages/iceshrimp-js/node_modules /iceshrimp/packages/iceshrimp-js/node_modules
# Copy the finished compiled files
2023-07-21 13:42:51 -06:00
COPY --from=build /iceshrimp/built /iceshrimp/built
COPY --from=build /iceshrimp/packages/backend/built /iceshrimp/packages/backend/built
COPY --from=build /iceshrimp/packages/backend/assets/instance.css /iceshrimp/packages/backend/assets/instance.css
COPY --from=build /iceshrimp/packages/backend/native-utils/built /iceshrimp/packages/backend/native-utils/built
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-07-21 13:42:51 -06:00
VOLUME "/iceshrimp/files"
2022-08-07 21:32:59 -06:00
ENTRYPOINT [ "/sbin/tini", "--" ]
CMD [ "pnpm", "run", "migrateandstart" ]