feat: add Docker Compose setup with Nginx, PostgreSQL, MinIO

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
consultoria-as
2026-02-22 04:10:38 +00:00
parent 7571ea3bab
commit e95b9a61c9
5 changed files with 205 additions and 0 deletions

13
apps/cms/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:20-alpine AS base
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
COPY . .
RUN npm run build
FROM node:20-alpine AS production
WORKDIR /app
COPY --from=base /app ./
EXPOSE 1337
CMD ["npm", "run", "start"]