diff --git a/Dockerfile b/Dockerfile index c8652bd0..ece9036a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.odit.services/hub/library/node:19.7.0-alpine3.16 as build ARG NPM_REGISTRY_URL=https://registry.npmjs.org WORKDIR /app -COPY package.json pnpm-lock.yaml *.config.js *.config.cjs index.html ./ +COPY package.json pnpm-lock.yaml vite.config.js tailwind.config.js postcss.config.cjs index.html ./ RUN npm config set registry $NPM_REGISTRY_URL && npm i -g pnpm@8 RUN mkdir /pnpm && pnpm config set store-dir /pnpm && pnpm i