43 lines
1.4 KiB
Docker
43 lines
1.4 KiB
Docker
## Install dev and compilation dependencies, build files
|
|
FROM alpine:3.18 as build
|
|
WORKDIR /calckey
|
|
|
|
# Install compilation dependencies
|
|
RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm vips
|
|
|
|
# Copy only the dependency-related files first, to cache efficiently
|
|
COPY package.json pnpm*.yaml ./
|
|
COPY packages/backend/package.json packages/backend/package.json
|
|
|
|
# Configure corepack and pnpm, and install dev mode dependencies for compilation
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm i --frozen-lockfile
|
|
|
|
# Copy in the rest of the files to compile
|
|
COPY . ./
|
|
RUN env NODE_ENV=production sh -c "pnpm run build"
|
|
|
|
# Trim down the dependencies to only those for production
|
|
RUN pnpm i --prod --frozen-lockfile
|
|
|
|
## Runtime container
|
|
FROM alpine:3.18
|
|
WORKDIR /calckey
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
|
|
|
|
COPY . ./
|
|
|
|
# Copy node modules
|
|
COPY --from=build /calckey/node_modules /calckey/node_modules
|
|
COPY --from=build /calckey/packages/backend/node_modules /calckey/packages/backend/node_modules
|
|
|
|
# Copy the finished compiled files
|
|
COPY --from=build /calckey/packages/backend/built /calckey/packages/backend/built
|
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
|
ENV NODE_ENV=production
|
|
VOLUME "/calckey/files"
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
|
CMD [ "pnpm", "run", "start" ]
|