From 669c6fd358922cce3abb2db4a1bd4727bfe1b42a Mon Sep 17 00:00:00 2001 From: morteza-mortezai Date: Mon, 1 Jun 2026 16:54:04 +0330 Subject: [PATCH] update: mirrors --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d554071..f0c2bf6 100755 --- a/Dockerfile +++ b/Dockerfile @@ -5,11 +5,12 @@ FROM node:22-alpine AS base RUN sed -i 's|https://dl-cdn.alpinelinux.org/alpine|https://mirror.de.velop.ir/alpine|g' /etc/apk/repositories # Configure npm registry mirror -ENV NPM_CONFIG_REGISTRY=https://package-mirror.liara.ir/repository/npm/ -RUN npm config set registry https://package-mirror.liara.ir/repository/npm/ +ENV NPM_CONFIG_REGISTRY=https://mirror-npm.runflare.com +RUN npm config set registry https://mirror-npm.runflare.com # Install tzdata to support timezone settings RUN apk add --no-cache tzdata +ENV TZ=Asia/Tehran # Set the timezone to Asia/Tehran RUN cp /usr/share/zoneinfo/Asia/Tehran /etc/localtime && echo "Asia/Tehran" > /etc/timezone