From f3bcc01685f3ea3ef6786a8e7d9a5b1a4f829d53 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Mon, 1 May 2023 15:04:58 +0200 Subject: [PATCH] Pinned config files used --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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