fix: exclude env files from Docker context

This commit is contained in:
2026-08-20 00:20:59 +03:00
parent bb3789c01c
commit 1142a9755a
3 changed files with 16 additions and 1 deletions

9
.dockerignore Normal file
View File

@@ -0,0 +1,9 @@
.git
.gitignore
**/.env
**/.env.*
**/node_modules
**/dist
**/__pycache__
temp
*.log

View File

@@ -1,5 +1,11 @@
# Changelog
## [Backend 0.6.8] - 2026-08-20
### Fixed
- Docker build context now excludes environment files and other local secret-bearing artifacts.
## [Backend 0.6.7] - 2026-08-20
### Changed

View File

@@ -1,6 +1,6 @@
{
"name": "@family-budget/backend",
"version": "0.6.7",
"version": "0.6.8",
"private": true,
"scripts": {
"dev": "tsx watch src/app.ts",