iceshrimp/Dockerfile

50 lines
1.4 KiB
Docker
Raw Normal View History

2023-08-04 06:55:36 +09:00
# syntax = docker/dockerfile:1.2
## 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
# Install compilation dependencies
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm vips
2023-06-08 02:43:32 +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
RUN --mount=type=cache,target=/iceshrimp/.yarncache cp -r .yarncache/. .yarn
2023-07-28 00:55:36 +09:00
# Configure corepack and install dev mode dependencies for compilation
RUN corepack enable && corepack prepare --activate && yarn --immutable
2023-08-04 06:55:36 +09:00
# Save yarn cache
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
RUN env NODE_ENV=production yarn build
# Prepare focused yarn cache
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused cp -r .yarncache_focused/. .yarn
# Remove dev deps
RUN yarn focus-production
# Save focused yarn cache
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused rm -rf .yarncache/* && cp -r .yarn/. .yarncache_focused
## Runtime container
2023-06-22 11:58:02 +09:00
FROM alpine:3.18
2023-07-22 04:42:51 +09:00
WORKDIR /iceshrimp
# Install runtime dependencies
2024-03-15 00:59:04 +09:00
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current libheif-dev
# Copy built files
COPY --from=build /iceshrimp /iceshrimp
# Configure corepack
RUN corepack enable && corepack prepare --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" ]