trashposs/Dockerfile

60 lines
2.1 KiB
Docker
Raw Normal View History

2023-08-03 23:55:36 +02:00
# syntax = docker/dockerfile:1.2
## 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
# Install compilation dependencies
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm vips
2023-06-07 19:43:32 +02:00
# Copy only the dependency-related files first, to cache efficiently
2023-10-19 03:25:37 +02:00
COPY package.json yarn.lock .pnp.cjs .pnp.loader.mjs .yarnrc.yml ./
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
2023-10-19 03:28:29 +02:00
COPY .yarn/plugins .yarn/plugins
2023-08-03 23:55:36 +02:00
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-10-19 03:23:07 +02:00
# Configure corepack and yarn, then install dependencies for compilation
2023-07-27 15:04:56 +02:00
RUN corepack enable && corepack prepare yarn@stable --activate && yarn
2023-10-19 03:23:07 +02:00
# For releases please uncomment the commands below
# Save space by removing unneeded dependencies from cache
#RUN sed -i -E 's/(os|cpu|libc): \[.*\]/\1: \["current"\]/' .yarnrc.yml
#RUN yarn cache clean && yarn
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
COPY . ./
2023-08-04 20:35:24 +02:00
# Build the thing
RUN env NODE_ENV=production yarn build
## Runtime container
2023-06-22 04:58:02 +02:00
FROM alpine:3.18
2023-07-21 21:42:51 +02:00
WORKDIR /iceshrimp
# 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
COPY . ./
# Copy node modules
2023-08-01 22:27:34 +02:00
COPY --from=build /iceshrimp/.yarn /iceshrimp/.yarn
# Copy the finished compiled files
2023-07-21 21:42:51 +02:00
COPY --from=build /iceshrimp/built /iceshrimp/built
COPY --from=build /iceshrimp/packages/backend/built /iceshrimp/packages/backend/built
COPY --from=build /iceshrimp/packages/backend/assets/instance.css /iceshrimp/packages/backend/assets/instance.css
2023-08-01 22:52:22 +02:00
RUN corepack enable && corepack prepare yarn@stable --activate
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" ]