2023-08-04 06:55:36 +09:00
# syntax = docker/dockerfile:1.2
2023-02-04 14:38:40 +09:00
## Install dev and compilation dependencies, build files
2023-06-22 11:58:02 +09:00
FROM alpine:3.18 as build
2023-07-22 04:42:51 +09:00
WORKDIR /iceshrimp
2018-10-09 15:09:50 +09:00
2023-02-04 14:38:40 +09:00
# Install compilation dependencies
2023-07-28 00:55:36 +09:00
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm rust cargo vips
2021-09-05 02:18:12 +09:00
2023-08-04 01:36:11 +09:00
# Collect sccache args
2023-08-04 06:55:36 +09:00
ARG SCCACHE_VERSION = v0.5.4
ARG SCCACHE_ARCHITECTURE = x86_64
ARG SCCACHE_MEMORY_LIMIT = 10G
2023-08-04 01:36:11 +09:00
# Download and initialize sccache
2023-08-04 01:41:25 +09:00
RUN wget https://github.com/mozilla/sccache/releases/download/${ SCCACHE_VERSION } /sccache-${ SCCACHE_VERSION } -${ SCCACHE_ARCHITECTURE } -unknown-linux-musl.tar.gz && \
2023-08-04 01:36:11 +09:00
tar xzf sccache-${ SCCACHE_VERSION } -${ SCCACHE_ARCHITECTURE } -unknown-linux-musl.tar.gz && \
mv sccache-${ SCCACHE_VERSION } -${ SCCACHE_ARCHITECTURE } -unknown-linux-musl/sccache /usr/local/bin && \
rm -rf sccache-${ SCCACHE_VERSION } -${ SCCACHE_ARCHITECTURE } -unknown-linux-musl*
# Set sccache as the Rust compiler, set default dir, and set cache memory limit
ENV RUSTC_WRAPPER = sccache
ENV SCCACHE_DIR = /tmp/sccache
ENV SCCACHE_CACHE_SIZE = ${ SCCACHE_MEMORY_LIMIT }
2023-06-08 02:43:32 +09: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-23 02:16:59 +09:00
COPY packages/backend/native-utils/src/lib.rs packages/backend/native-utils/src/
2023-06-08 02:43:32 +09:00
COPY packages/backend/native-utils/migration/Cargo.toml packages/backend/native-utils/migration/Cargo.toml
2023-06-23 02:16:59 +09:00
COPY packages/backend/native-utils/migration/src/lib.rs packages/backend/native-utils/migration/src/
2023-06-08 02:43:32 +09:00
# Install cargo dependencies
2023-08-04 06:55:36 +09:00
RUN --mount= type = cache,target= /root/.cargo cargo fetch --locked --manifest-path /iceshrimp/packages/backend/native-utils/Cargo.toml
2023-06-08 02:43:32 +09:00
2023-02-04 14:38:40 +09:00
# Copy only the dependency-related files first, to cache efficiently
2023-07-28 00:55:36 +09:00
COPY package.json yarn.lock .pnp.cjs .pnp.loader.mjs ./
2023-02-04 14:38:40 +09:00
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-22 02:33:01 +09:00
COPY packages/iceshrimp-js/package.json packages/iceshrimp-js/package.json
2023-07-07 11:54:53 +09:00
COPY packages/megalodon/package.json packages/megalodon/package.json
2023-04-02 13:44:19 +09:00
COPY packages/backend/native-utils/package.json packages/backend/native-utils/package.json
2023-04-02 17:59:18 +09: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 12:32:59 +09:00
2023-08-04 06:55:36 +09:00
# Prepare yarn cache
COPY .yarn/cache .yarn/cache
RUN --mount= type = cache,target= /iceshrimp/.yarncache cp -Tr .yarncache .yarn
2023-07-28 00:55:36 +09:00
2023-07-27 20:53:57 +09:00
# Configure corepack and yarn, and install dev mode dependencies for compilation
2023-07-27 22:04:56 +09:00
RUN corepack enable && corepack prepare yarn@stable --activate && yarn
2023-02-04 14:38:40 +09:00
2023-08-04 06:55:36 +09:00
# Save yarn cache
RUN --mount= type = cache,target= /iceshrimp/.yarncache rm -rf .yarncache/* && cp -Tr .yarn .yarncache
2023-06-23 02:16:59 +09:00
# Copy in the rest of the native-utils rust files
2023-07-07 11:54:53 +09:00
COPY packages/backend/native-utils packages/backend/native-utils/
2023-06-23 02:16:59 +09:00
2023-08-04 01:36:11 +09:00
# Compile native-utils utilising sccache
2023-08-05 00:14:18 +09:00
RUN --mount= type = cache,target= /root/.cargo --mount= type = cache,target= /tmp/sccache --mount= type = cache,target= /iceshrimp/packages/backend/native-utils/target --mount= type = cache,target= /iceshrimp/packages/backend/native-utils/migration/target yarn workspace native-utils build
2023-06-23 02:16:59 +09:00
2023-06-22 11:58:02 +09:00
# Copy in the rest of the files to compile
2023-02-04 14:38:40 +09:00
COPY . ./
2023-08-03 03:49:00 +09:00
RUN env NODE_ENV = production sh -c "yarn workspace iceshrimp-js run build && yarn workspaces foreach --exclude native-utils --include sw --include client --include backend --include megalodon run build && yarn gulp"
2023-02-04 14:38:40 +09:00
2023-08-04 23:49:35 +09:00
# Prepare yarn cache (production)
RUN --mount= type = cache,target= /iceshrimp/.yarncache_prod cp -Tr .yarncache_prod .yarn
2023-06-23 02:16:59 +09:00
# Trim down the dependencies to only those for production
2023-07-27 20:53:57 +09:00
RUN yarn workspaces focus --all --production
2023-02-04 14:38:40 +09:00
2023-08-04 23:49:35 +09:00
# Save yarn cache (production)
RUN --mount= type = cache,target= /iceshrimp/.yarncache_prod rm -rf .yarncache_prod/* && cp -Tr .yarn .yarncache_prod
2023-02-04 14:38:40 +09:00
## Runtime container
2023-06-22 11:58:02 +09:00
FROM alpine:3.18
2023-07-22 04:42:51 +09:00
WORKDIR /iceshrimp
2023-02-04 14:38:40 +09:00
# Install runtime dependencies
2023-06-22 11:58:02 +09:00
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
2023-02-04 14:38:40 +09:00
COPY . ./
2018-10-30 21:18:03 +09:00
2023-07-22 04:42:51 +09:00
COPY --from= build /iceshrimp/packages/megalodon /iceshrimp/packages/megalodon
2023-07-07 15:46:50 +09:00
2023-02-04 14:38:40 +09:00
# Copy node modules
2023-08-02 05:27:34 +09:00
COPY --from= build /iceshrimp/.yarn /iceshrimp/.yarn
2023-02-04 14:38:40 +09:00
# Copy the finished compiled files
2023-07-22 04:42:51 +09: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-02-04 14:38:40 +09:00
2023-08-02 05:52:22 +09:00
RUN corepack enable && corepack prepare yarn@stable --activate
2023-06-22 15:00:28 +09:00
ENV NODE_ENV = production
2023-07-22 04:42:51 +09:00
VOLUME "/iceshrimp/files"
2022-08-08 12:32:59 +09:00
ENTRYPOINT [ "/sbin/tini" , "--" ]
2023-07-27 20:53:57 +09:00
CMD [ "yarn" , "run" , "migrateandstart" ]