Initial commit

This commit is contained in:
Tiago
2025-11-29 21:18:53 -03:00
commit 86d13bee5d
14 changed files with 4216 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY client/package.json client/
RUN cd client && npm install
COPY client client
RUN cd client && npm run build
FROM node:20-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY server server
COPY --from=builder /app/client/dist client/dist
EXPOSE 4000
CMD ["npm", "start"]