linting
This commit is contained in:
parent
807e50388a
commit
832189a346
10 changed files with 518 additions and 299 deletions
|
@ -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 ./
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue