build test

This commit is contained in:
DESKTOP-2S5P7D1\Windows 10 2024-12-04 13:03:16 +07:00
parent ef18fb08c5
commit d877d0fae2
2 changed files with 11 additions and 5 deletions

View file

@ -49,6 +49,7 @@ jobs:
with: with:
context: . context: .
platforms: linux/amd64 platforms: linux/amd64
file: docker/Dockerfile
push: true push: true
tags: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}:${{ steps.gen_ver.outputs.image_ver }},${{env.REGISTRY}}/${{env.IMAGE_NAME}}:latest tags: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}:${{ steps.gen_ver.outputs.image_ver }},${{env.REGISTRY}}/${{env.IMAGE_NAME}}:latest
- name: Remote Deployment - name: Remote Deployment

View file

@ -1,25 +1,30 @@
FROM node:20-slim AS base # Base stage
FROM node:lts-alpine AS base
ENV PNPM_HOME="/pnpm" ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH" ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable RUN corepack enable
WORKDIR /app WORKDIR /app
COPY . . COPY . .
# Dependencies stage
FROM base AS deps FROM base AS deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
# Build stage
FROM base AS build FROM base AS build
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build RUN pnpm run build
FROM base as prod # Production stage
FROM node:lts-alpine AS prod
ENV NODE_ENV="production" ENV NODE_ENV="production"
WORKDIR /app
# Copy necessary files from previous stages
COPY --from=deps /app/node_modules /app/node_modules COPY --from=deps /app/node_modules /app/node_modules
COPY --from=build /app/dist /app/dist COPY --from=build /app/dist /app/dist
COPY --from=base /app/static /app/static COPY --from=base /app/static /app/static
# Start the application
CMD ["pnpm", "run", "start"] CMD ["pnpm", "run", "start"]