diff --git a/Dockerfile b/Dockerfile index 1955a01..6f497e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,9 @@ FROM node:20 AS base # ENV NPM_CONFIG_REGISTRY=https://mirror-npm.runflare.com ENV TZ=Asia/Tehran -RUN apk add --no-cache tzdata +RUN apt-get update && \ + apt-get install -y tzdata && \ + rm -rf /var/lib/apt/lists/* FROM base AS deps WORKDIR /temp-deps