chore: build process
This commit is contained in:
parent
1e2b26558c
commit
2405eac9e1
2 changed files with 30 additions and 0 deletions
6
Prototype/server/.dockerignore
Normal file
6
Prototype/server/.dockerignore
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
24
Prototype/server/Dockerfile
Normal file
24
Prototype/server/Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue