update docker compoes and docker file

This commit is contained in:
Alex Holliday
2025-09-04 13:39:53 -07:00
parent 5d23966f00
commit fb0a86d37c
2 changed files with 4 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ services:
server:
image: ghcr.io/bluewave-labs/checkmate-backend-mono-multiarch:latest
restart: always
pull_policy: always
ports:
- "52345:52345"
environment:
@@ -16,7 +17,7 @@ services:
mongodb:
image: mongo:4.4.18
restart: always
command: ["mongod", "--quiet", --bind_ip_all"]
command: ["mongod", "--quiet", "--bind_ip_all"]
ports:
- "27017:27017"
volumes:

View File

@@ -1,7 +1,7 @@
# ---------------------
# Frontend build stage
# ---------------------
FROM --platform=$BUILDPLATFORM node:24-slim AS frontend-build
FROM --platform=$TARGETPLATFORM node:24-slim AS frontend-build
WORKDIR /app/client
@@ -18,7 +18,7 @@ RUN npm run build
# ---------------------
# Backend stage
# ---------------------
FROM --platform=$BUILDPLATFORM node:24-slim AS backend
FROM --platform=$TARGETPLATFORM node:24-slim AS backend
WORKDIR /app/server