fix: update dependencies to latest

This commit is contained in:
Divlo
2023-05-13 20:09:02 +02:00
parent b07a62de8b
commit 73d2da66b2
18 changed files with 2965 additions and 1015 deletions

View File

@ -1,15 +1,15 @@
FROM node:18.15.0 AS dependencies
FROM node:18.16.0 AS dependencies
WORKDIR /usr/src/app
COPY ./package*.json ./
RUN npm install
FROM node:18.15.0 AS builder
FROM node:18.16.0 AS builder
WORKDIR /usr/src/app
COPY --from=dependencies /usr/src/app/node_modules ./node_modules
COPY ./ ./
RUN npm run prisma:generate && npm run build
FROM node:18.15.0 AS runner
FROM node:18.16.0 AS runner
WORKDIR /usr/src/app
ENV NODE_ENV=production
COPY --from=builder /usr/src/app/node_modules ./node_modules