feat: add .dockerignore file and update Dockerfile to include discord-bot directory
All checks were successful
CI / test (push) Successful in 4s
CI / build-ha-gateway (push) Successful in 55s
CI / build-discord-bot (push) Successful in 43s

This commit is contained in:
Nik Afiq 2026-04-06 20:49:51 +09:00
parent 066224715a
commit 5f0ae449b2
2 changed files with 16 additions and 0 deletions

15
.dockerignore Normal file
View File

@ -0,0 +1,15 @@
.git
.gitea
.claude
**/.DS_Store
**/.env
**/.env.*
!**/.env.example
plan.md
README.md
**/*.md
!ha-gateway/.env.example
!discord-bot/.env.example

View File

@ -4,6 +4,7 @@ WORKDIR /workspace
COPY go.work go.work.sum ./
COPY gen/ ./gen/
COPY ha-gateway/ ./ha-gateway/
COPY discord-bot/ ./discord-bot/
WORKDIR /workspace/ha-gateway
RUN go mod download