2023-08-03 23:55:36 +02:00
|
|
|
# syntax = docker/dockerfile:1.2
|
2023-02-04 06:38:40 +01:00
|
|
|
## Install dev and compilation dependencies, build files
|
2023-06-22 04:58:02 +02:00
|
|
|
FROM alpine:3.18 as build
|
2023-07-21 21:42:51 +02:00
|
|
|
WORKDIR /iceshrimp
|
2018-10-09 08:09:50 +02:00
|
|
|
|
2023-02-04 06:38:40 +01:00
|
|
|
# Install compilation dependencies
|
2023-11-05 21:31:19 +01:00
|
|
|
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm vips moreutils jq
|
2023-06-07 19:43:32 +02:00
|
|
|
|
2023-02-04 06:38:40 +01:00
|
|
|
# Copy only the dependency-related files first, to cache efficiently
|
2023-10-19 03:33:17 +02:00
|
|
|
COPY package.json yarn.lock .pnp.cjs .pnp.loader.mjs ./
|
2023-02-04 06:38:40 +01: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-21 19:33:01 +02:00
|
|
|
COPY packages/iceshrimp-js/package.json packages/iceshrimp-js/package.json
|
2022-08-08 05:32:59 +02:00
|
|
|
|
2023-08-03 23:55:36 +02:00
|
|
|
# Prepare yarn cache
|
|
|
|
COPY .yarn/cache .yarn/cache
|
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache cp -Tr .yarncache .yarn
|
2023-07-27 17:55:36 +02:00
|
|
|
|
2023-11-05 21:31:19 +01:00
|
|
|
# Configure corepack and install dev mode dependencies for compilation
|
2023-11-05 15:19:30 +01:00
|
|
|
RUN corepack enable && corepack prepare --activate && yarn
|
2023-02-04 06:38:40 +01:00
|
|
|
|
2023-08-03 23:55:36 +02:00
|
|
|
# Save yarn cache
|
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache rm -rf .yarncache/* && cp -Tr .yarn .yarncache
|
|
|
|
|
2023-06-22 04:58:02 +02:00
|
|
|
# Copy in the rest of the files to compile
|
2023-02-04 06:38:40 +01:00
|
|
|
COPY . ./
|
2023-08-04 20:35:24 +02:00
|
|
|
|
|
|
|
# Build the thing
|
2023-09-26 21:25:32 +02:00
|
|
|
RUN env NODE_ENV=production yarn build
|
2023-02-04 06:38:40 +01:00
|
|
|
|
2023-11-05 21:31:19 +01:00
|
|
|
# Prepare focused yarn cache
|
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused cp -Tr .yarncache_focused .yarn
|
|
|
|
|
|
|
|
# Remove dev deps
|
|
|
|
RUN find packages package.json -name package.json | xargs -i sh -c "jq 'del(.devDependencies)' {} | sponge {}"
|
|
|
|
RUN yarn
|
|
|
|
|
|
|
|
# Save focused yarn cache
|
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused rm -rf .yarncache/* && cp -Tr .yarn .yarncache_focused
|
|
|
|
|
2023-02-04 06:38:40 +01:00
|
|
|
## Runtime container
|
2023-06-22 04:58:02 +02:00
|
|
|
FROM alpine:3.18
|
2023-07-21 21:42:51 +02:00
|
|
|
WORKDIR /iceshrimp
|
2023-02-04 06:38:40 +01:00
|
|
|
|
|
|
|
# Install runtime dependencies
|
2023-06-22 04:58:02 +02:00
|
|
|
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
|
2023-02-04 06:38:40 +01:00
|
|
|
|
2023-11-05 21:31:19 +01:00
|
|
|
# Copy built files
|
|
|
|
COPY --from=build /iceshrimp /iceshrimp
|
2023-02-04 06:38:40 +01:00
|
|
|
|
2023-11-05 21:31:19 +01:00
|
|
|
# Configure corepack
|
2023-11-05 15:19:30 +01:00
|
|
|
RUN corepack enable && corepack prepare --activate
|
2023-11-05 21:31:19 +01:00
|
|
|
|
2023-06-22 08:00:28 +02:00
|
|
|
ENV NODE_ENV=production
|
2023-07-21 21:42:51 +02:00
|
|
|
VOLUME "/iceshrimp/files"
|
2022-08-08 05:32:59 +02:00
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
2023-07-27 13:53:57 +02:00
|
|
|
CMD [ "yarn", "run", "migrateandstart" ]
|