From 2413b8f021082b28ec2cdc005240e5331ff7fd2d Mon Sep 17 00:00:00 2001 From: GunaTrika Date: Fri, 24 Dec 2021 18:58:48 +0530 Subject: [PATCH] Fixing build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1647795d6..77820fd57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:alpine AS deps RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install # Rebuild the source code only when needed FROM node:alpine AS builder @@ -42,4 +42,4 @@ EXPOSE 3000 # Uncomment the following line in case you want to disable telemetry. # ENV NEXT_TELEMETRY_DISABLED 1 -CMD ["yarn", "start"] \ No newline at end of file +CMD ["yarn", "start"]