feat: implement automated Docker deployment and update README

- Replaced manual rsync/npm_deploy workflow with multi-stage Docker builds.
- Added Dockerfile and .dockerignore for staging and production environments.
- Added 'deploy:staging' and 'deploy:prod' scripts to package.json.
- Updated README.md with new deployment instructions.
This commit is contained in:
Scott Idem
2026-03-09 22:17:54 -04:00
parent 206faf0c71
commit 9b285d7fec
5 changed files with 89 additions and 23 deletions

12
.dockerignore Normal file
View File

@@ -0,0 +1,12 @@
node_modules
build
.svelte-kit
.git
.env
.env.*
!.env.staging
!.env.prod
npm_deploy
test-results
test_results
documentation