From 8637cc3b4231feee6a35cedce1a92b34d8b0d282 Mon Sep 17 00:00:00 2001 From: izzydotexe Date: Thu, 12 Dec 2024 12:10:25 -0500 Subject: [PATCH] fix ci --- unity.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unity.Dockerfile b/unity.Dockerfile index 5197687..669a038 100644 --- a/unity.Dockerfile +++ b/unity.Dockerfile @@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y npm WORKDIR /app COPY ./unity/package*.json . -RUN node --max-old-space-size=1000 $(which npm) ci +RUN node --max-old-space-size=1000 $(which npm) i COPY ./unity/ . RUN node --max-old-space-size=1000 $(which npm) run build