calckey/Dockerfile

43 lines
1.4 KiB
Docker
Raw Normal View History

## Install dev and compilation dependencies, build files
2023-06-22 02:58:02 +00:00
FROM alpine:3.18 as build
2022-08-23 05:11:29 +00:00
WORKDIR /calckey
# Install compilation dependencies
RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm vips
2023-06-07 17:43:32 +00:00
# Copy only the dependency-related files first, to cache efficiently
COPY package.json pnpm*.yaml ./
COPY packages/backend/package.json packages/backend/package.json
2022-08-08 03:32:59 +00:00
2023-06-22 02:58:02 +00:00
# Configure corepack and pnpm, and install dev mode dependencies for compilation
RUN corepack enable && corepack prepare pnpm@latest --activate && pnpm i --frozen-lockfile
2023-06-22 02:58:02 +00:00
# Copy in the rest of the files to compile
COPY . ./
RUN env NODE_ENV=production sh -c "pnpm run build"
2023-06-22 17:16:59 +00:00
# Trim down the dependencies to only those for production
RUN pnpm i --prod --frozen-lockfile
## Runtime container
2023-06-22 02:58:02 +00:00
FROM alpine:3.18
WORKDIR /calckey
# 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
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
2023-06-22 02:58:02 +00:00
RUN corepack enable && corepack prepare pnpm@latest --activate
2023-06-22 06:00:28 +00:00
ENV NODE_ENV=production
2023-06-22 17:16:59 +00:00
VOLUME "/calckey/files"
2022-08-08 03:32:59 +00:00
ENTRYPOINT [ "/sbin/tini", "--" ]
CMD [ "pnpm", "run", "start" ]