From 936b36f90546406cd1deca9bfaa1d89b16303ec2 Mon Sep 17 00:00:00 2001 From: mirkobrombin Date: Sat, 27 Jan 2024 22:17:29 +0100 Subject: [PATCH] fix: build not taking updated conf --- Containerfile | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 39e436d..617b111 100644 --- a/Containerfile +++ b/Containerfile @@ -4,7 +4,6 @@ WORKDIR /app COPY . . RUN npm install -RUN npm run build EXPOSE 6090 diff --git a/package.json b/package.json index 32cb0bb..7443499 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "preview": "vite preview", "generate-config": "node generate-config.js", "start": "node server.js", - "publish": "npm run generate-config && npm run start" + "publish": "npm run generate-config && npm run build && npm run start" }, "dependencies": { "@babel/types": "^7.22.5",