feat: Remove Caddy and Docker configuration; add Express server with health checker endpoint

This commit is contained in:
Marco Gallegos
2025-11-24 20:09:02 -06:00
parent 227f887c78
commit 5c13fa51c3
6 changed files with 77 additions and 80 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:20-alpine
# Install only production dependencies
WORKDIR /app
COPY package.json ./
# npm install will run inside Coolify/Traefik containers where network access exists
RUN npm install --omit=dev
# Copy the rest of the repository
COPY . .
EXPOSE 3000
CMD ["npm", "start"]