From f745bb1db9cb1a2f5e4945d8e0434ae9653ff1d8 Mon Sep 17 00:00:00 2001 From: Jesus Guerrero Date: Tue, 15 Oct 2024 12:03:10 -0400 Subject: [PATCH] chore: remove lock-file --- coolify.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coolify.Dockerfile b/coolify.Dockerfile index 4856df16..ab19d8c6 100644 --- a/coolify.Dockerfile +++ b/coolify.Dockerfile @@ -17,7 +17,7 @@ WORKDIR /app COPY . . COPY --from=base --chown=9999:9999 /var/www/html . -RUN yarn install --frozen-lockfile && yarn && yarn build && npm prune --production +RUN yarn install && yarn && yarn build && npm prune --production FROM base as runner