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