From abc4b954e050e9a164f031af763a8d873b87c149 Mon Sep 17 00:00:00 2001 From: Andrei Balanuta <43002968+snurfer0@users.noreply.github.com> Date: Mon, 11 Dec 2023 16:06:35 +0200 Subject: [PATCH] fix: docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 343d7f3..4fe86f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /usr/src/app COPY package.json yarn.lock ./ -RUN yarn install --production --frozen-lockfile --ignore-optional +RUN yarn install --frozen-lockfile # Rebuild the source code only when needed FROM node:18-alpine AS builder