From 7cb4459fd414d99f54d12e5910d2df5ce2963465 Mon Sep 17 00:00:00 2001 From: Soheil Khaledabadi Date: Sat, 6 Jun 2026 12:01:00 +0330 Subject: [PATCH] fix(docker): try to fix bug with set timeout --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 151e3f8..630eaf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app RUN sed -i 's|https://dl-cdn.alpinelinux.org|https://mirror.arvancloud.ir/alpine|g' /etc/apk/repositories COPY package.json package-lock.json ./ -RUN npm ci +RUN timeout 300 npm ci COPY resources ./resources COPY public ./public