Fixed typo in --frozen-lockfile flag

This commit is contained in:
Alex van Andel 2021-08-12 20:59:11 +00:00
parent c2011fdf05
commit c67cee3f08
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY calendso/package.json calendso/yarn.lock .
COPY calendso/prisma prisma
RUN yarn install ---frozen-lockfile
RUN yarn install --frozen-lockfile
FROM node:14-alpine as builder
WORKDIR /app