This commit is contained in:
waveringana 2023-11-18 12:53:15 -05:00
parent 807e50388a
commit 832189a346
10 changed files with 518 additions and 299 deletions

View file

@ -2,6 +2,7 @@ FROM node:16-alpine AS BUILD_IMAGE
RUN apk add curl
WORKDIR /
COPY package*.json ./
COPY tsconfig.json ./
COPY /app ./app
@ -11,6 +12,7 @@ RUN npm prune --production
FROM node:16-alpine
WORKDIR /
COPY --from=BUILD_IMAGE /node_modules ./node_modules
COPY --from=BUILD_IMAGE /dist ./dist
COPY package*.json ./