update docker file

This commit is contained in:
2026-05-10 14:56:00 +03:30
parent a1e8f40417
commit 578e445917
+4 -1
View File
@@ -6,8 +6,11 @@ ENV NPM_CONFIG_REGISTRY=${NPM_REGISTRY}
ENV npm_config_registry=${NPM_REGISTRY} ENV npm_config_registry=${NPM_REGISTRY}
ENV PNPM_HOME="/pnpm" ENV PNPM_HOME="/pnpm"
ENV PATH="${PNPM_HOME}:${PATH}" ENV PATH="${PNPM_HOME}:${PATH}"
ENV COREPACK_NPM_REGISTRY=${NPM_REGISTRY}
ARG PNPM_VERSION=11.0.9
RUN corepack enable && npm config set registry ${NPM_REGISTRY} RUN npm config set registry ${NPM_REGISTRY} \
&& npm install -g pnpm@${PNPM_VERSION}
FROM base AS build FROM base AS build