ci(docker): updated docker to correctly build and run

This commit is contained in:
2025-08-31 09:07:06 -05:00
parent e75883e587
commit f348e4e053
4 changed files with 55 additions and 51 deletions

View File

@@ -8,6 +8,7 @@
"dev:app": "dotenvx run -f .env -- tsx watch app/src/main.ts",
"dev:docs": "cd lstDocs && npm start",
"dev:front": "cd frontend && npm run dev",
"dev": "npm run dev:app",
"copy:docs": "node scripts/lstDocCopy.mjs",
"build:app": "rimraf dist && npx tsc",
"build:front": "cd frontend && rimraf dist && npm run build",
@@ -15,11 +16,11 @@
"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:docs": "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 .",
"docker": "docker compose up --build --force-recreate -d",
"commit": "cz",
"deploy": "standard-version --conventional-commits && npm run build"
},