test(docker): more testing on how i want to build the docker part of the app

This commit is contained in:
2025-08-30 09:14:19 -05:00
parent 5d5401b248
commit e75883e587
2 changed files with 37 additions and 14 deletions

View File

@@ -14,6 +14,9 @@
"build:docs": "cd lstDocs && rimraf build && npm run build",
"build:wrapper": "cd lstWrapper && rimraf publish && dotnet publish -c Release -o ./publish",
"build": "npm run build:docs && npm run build:front && npm run build:app",
"install:front": "cd frontend && npm i",
"install:doc": "cd lstDocs && npm i",
"install:app": "npm i",
"start:app": "set NODE_ENV=production && node dist/main.js",
"start": "dotenvx run -f .env -- npm run start:app",
"docker": "docker build --no-cache -t lst-test .",