mirror of https://github.com/openclaw/openclaw.git
fix(docker): exclude .env from Docker build context (#44956)
This commit is contained in:
parent
897910ea4f
commit
1bf56e711a
|
|
@ -1,5 +1,11 @@
|
||||||
.git
|
.git
|
||||||
.worktrees
|
.worktrees
|
||||||
|
|
||||||
|
# Sensitive files – docker-setup.sh writes .env with OPENCLAW_GATEWAY_TOKEN
|
||||||
|
# into the project root; keep it out of the build context.
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
|
||||||
.bun-cache
|
.bun-cache
|
||||||
.bun
|
.bun
|
||||||
.tmp
|
.tmp
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue