Feat: First Commit + Project Scaffolding + Initialize Styling
License Added
This commit is contained in:
11
Commands/Local/prod.just
Normal file
11
Commands/Local/prod.just
Normal file
@@ -0,0 +1,11 @@
|
||||
project_root := justfile_directory()
|
||||
frontend_dir := project_root + "/Frontend"
|
||||
frontend_bake := project_root + "/Frontend/docker-bake.hcl"
|
||||
|
||||
# Build the Frontend production image locally.
|
||||
build:
|
||||
cd '{{frontend_dir}}' && docker buildx bake -f '{{frontend_bake}}' prod
|
||||
|
||||
# Rebuild the Frontend production image locally.
|
||||
rebuild:
|
||||
cd '{{frontend_dir}}' && docker buildx bake -f '{{frontend_bake}}' --set '*.no-cache=true' prod
|
||||
Reference in New Issue
Block a user