up
Build and Deploy Docker Images / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-11 10:57:46 +03:30
parent 732250d2bd
commit 04aa1cfe8d
+6 -5
View File
@@ -7,12 +7,13 @@ RUN sed -i 's|https://dl-cdn.alpinelinux.org/alpine|https://mirror.de.velop.ir/a
# Configure npm registry mirror # Configure npm registry mirror
ENV NPM_CONFIG_REGISTRY=https://registry.npmmirror.com ENV NPM_CONFIG_REGISTRY=https://registry.npmmirror.com
# Install tzdata to support timezone settings # Install tzdata and set timezone
RUN apk add --no-cache tzdata RUN apk add --no-cache tzdata \
ENV TZ=Asia/Tehran && cp /usr/share/zoneinfo/Asia/Tehran /etc/localtime \
&& echo "Asia/Tehran" > /etc/timezone \
&& apk del tzdata
# Set the timezone to Asia/Tehran ENV TZ=Asia/Tehran
RUN cp /usr/share/zoneinfo/Asia/Tehran /etc/localtime && echo "Asia/Tehran" > /etc/timezone
FROM base AS deps FROM base AS deps