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