chore: change dir (prepare to merge)

This commit is contained in:
Methapon2001 2023-11-22 16:16:27 +07:00
parent f3078c47ea
commit 7c55806956
No known key found for this signature in database
GPG key ID: 849924FEF46BD132
31 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,24 @@
FROM node:18-alpine as base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
WORKDIR /app
COPY . .
FROM base AS deps
RUN npm install
FROM base AS build
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build
FROM base as prod
COPY --from=deps /app/node_modules /app/node_modules
COPY --from=build /app/dist /app/dist
COPY --from=base /app/static /app/static
CMD ["node", "./dist/app.js"]