fix: update Dockerfile and turbo.json to include APP_VERSION and GIT_COMMIT_SHA as environment variables

- Added APP_VERSION and GIT_COMMIT_SHA arguments to Dockerfile for versioning and commit tracking.
- Updated turbo.json to pass APP_VERSION and GIT_COMMIT_SHA as environment variables for build tasks.
This commit is contained in:
2026-03-24 11:08:30 -04:00
parent 2cd1964ca8
commit 1bf12d3884
2 changed files with 6 additions and 1 deletions
+2 -1
View File
@@ -4,7 +4,8 @@
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
"outputs": ["dist/**"],
"env": ["APP_VERSION", "GIT_COMMIT_SHA"]
},
"dev": {
"dependsOn": ["^build"],