Skip to content

Commit ec65a0b

Browse files
committed
chore: Minor cleanup
1 parent bb21145 commit ec65a0b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
services:
44
# first instance of the api server
55
api1:
6-
container_name: api-1
6+
container_name: gallery-api-core-1
77
env_file:
88
- ../config/env/.env
99
environment:
@@ -23,7 +23,7 @@ services:
2323

2424
# second instance of the api server
2525
api2:
26-
container_name: api-2
26+
container_name: gallery-api-core-2
2727
env_file:
2828
- ../config/env/.env
2929
environment:

docker/jobs/Dockerfile.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# For development purposes, the dev docker file simply mounts the codebase with hot-reloading
2-
FROM node:20-alpine
2+
FROM node:24-slim
33

44
# Maintainer information
55
LABEL org.opencontainers.image.authors="Tan Jin (tjtanjin)"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Request, Response } from 'express';
22

33
// todo: maybe build a separate lightweight status service as well
4+
// should also consider rag service
45
export const getHealthStatus = (req: Request, res: Response) => {
56
res.status(200).json({ status: 'healthy' });
67
};

0 commit comments

Comments
 (0)