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
|
2024-06-16 18:26:36 +09:00
|
|
|
FROM alpine:3.20 as build
|
2024-10-11 15:06:46 +09:00
|
|
|
LABEL stage=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
|
2024-07-29 21:16:33 +09:00
|
|
|
RUN apk add --no-cache --no-progress git alpine-sdk python3 py3-setuptools nodejs-current npm linux-headers
|
2023-06-08 02:43:32 +09:00
|
|
|
|
2023-11-17 08:10:51 +09:00
|
|
|
# Copy in all files for the build
|
|
|
|
COPY . ./
|
2022-08-08 12:32:59 +09:00
|
|
|
|
2023-08-04 06:55:36 +09:00
|
|
|
# Prepare yarn cache
|
2024-04-23 19:04:27 +09:00
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache cp -r .yarncache/. .yarn
|
2023-07-28 00:55:36 +09:00
|
|
|
|
2023-11-06 05:31:19 +09:00
|
|
|
# Configure corepack and install dev mode dependencies for compilation
|
2023-11-19 12:40:44 +09:00
|
|
|
RUN corepack enable && corepack prepare --activate && yarn --immutable
|
2023-02-04 14:38:40 +09:00
|
|
|
|
2023-08-04 06:55:36 +09:00
|
|
|
# Save yarn cache
|
2024-04-23 19:04:27 +09:00
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache rm -rf .yarncache/* && cp -r .yarn/. .yarncache
|
2023-08-04 06:55:36 +09:00
|
|
|
|
2023-08-05 03:35:24 +09:00
|
|
|
# Build the thing
|
2023-09-27 04:25:32 +09:00
|
|
|
RUN env NODE_ENV=production yarn build
|
2023-02-04 14:38:40 +09:00
|
|
|
|
2023-11-06 05:31:19 +09:00
|
|
|
# Prepare focused yarn cache
|
2024-04-23 19:04:27 +09:00
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused cp -r .yarncache_focused/. .yarn
|
2023-11-06 05:31:19 +09:00
|
|
|
|
|
|
|
# Remove dev deps
|
2023-11-07 05:51:43 +09:00
|
|
|
RUN yarn focus-production
|
2023-11-06 05:31:19 +09:00
|
|
|
|
|
|
|
# Save focused yarn cache
|
2024-04-23 19:04:27 +09:00
|
|
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused rm -rf .yarncache/* && cp -r .yarn/. .yarncache_focused
|
2023-11-06 05:31:19 +09:00
|
|
|
|
2023-02-04 14:38:40 +09:00
|
|
|
## Runtime container
|
2024-06-16 18:26:36 +09:00
|
|
|
FROM alpine:3.20
|
2024-10-11 15:06:46 +09:00
|
|
|
LABEL stage=runtime
|
2023-07-22 04:42:51 +09:00
|
|
|
WORKDIR /iceshrimp
|
2023-02-04 14:38:40 +09:00
|
|
|
|
|
|
|
# Install runtime dependencies
|
2024-07-17 00:04:39 +09:00
|
|
|
RUN apk add --no-cache --no-progress tini ffmpeg zip unzip nodejs-current libheif-dev
|
2023-02-04 14:38:40 +09:00
|
|
|
|
2023-11-06 05:31:19 +09:00
|
|
|
# Copy built files
|
|
|
|
COPY --from=build /iceshrimp /iceshrimp
|
2023-02-04 14:38:40 +09:00
|
|
|
|
2023-11-06 05:31:19 +09:00
|
|
|
# Configure corepack
|
2023-11-05 23:19:30 +09:00
|
|
|
RUN corepack enable && corepack prepare --activate
|
2023-11-06 05:31:19 +09:00
|
|
|
|
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" ]
|