made some changes to make the docker compose build work + added docker ignores to not copy non-essential files

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-27 15:03:45 -05:00
parent b4fd4ee8e6
commit fb8a06f11a
8 changed files with 43 additions and 11 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
services:
client:
build:
context: ./apps/client
dockerfile: Dockerfile
context: .
dockerfile: apps/client/Dockerfile
restart: unless-stopped
ports:
- 3000:3000
@@ -12,8 +12,8 @@ services:
- server
server:
build:
context: ./apps/server
dockerfile: Dockerfile
context: .
dockerfile: apps/server/Dockerfile
restart: unless-stopped
ports:
- 3000