fix typos

This commit is contained in:
sbriat
2023-05-05 16:05:53 +02:00
parent 762b674659
commit f789ccb645
3 changed files with 6 additions and 2 deletions

View File

@@ -12,8 +12,12 @@ WORKDIR /usr/src/app
# Copying this first prevents re-running npm install on every code change.
COPY --chown=node:node package*.json ./
# Copy prisma (needed for prisma error types)
COPY --chown=node:node ./prisma prisma
# Install app dependencies using the `npm ci` command instead of `npm install`
RUN npm ci
RUN npx prisma generate
# Bundle app source
COPY --chown=node:node . .