diff --git a/Dockerfile b/Dockerfile index 0518840..0f24c0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,17 +6,11 @@ RUN sed -i 's|https://dl-cdn.alpinelinux.org/alpine|https://mirror.de.velop.ir/a # Configure npm registry mirror (Liara) ENV NPM_CONFIG_REGISTRY=https://package-mirror.liara.ir/repository/npm/ RUN npm config set registry https://package-mirror.liara.ir/repository/npm/ - -# Install tzdata to support timezone settings -RUN apk add --no-cache tzdata && \ - cp /usr/share/zoneinfo/Asia/Tehran /etc/localtime && \ - echo "Asia/Tehran" > /etc/timezone - + WORKDIR /app FROM base AS deps -RUN apk add --no-cache libc6-compat git COPY package*.json ./ RUN npm ci --legacy-peer-deps --ignore-scripts --loglevel info