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"]