This commit is contained in:
Junior
2026-04-21 18:05:15 -03:00
parent 8c3c56de09
commit d29137be9d
41 changed files with 3945 additions and 318 deletions

13
front-end/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:22-alpine
RUN apk add --no-cache curl
ENV NODE_ENV=production
ENV TZ=America/Sao_Paulo
WORKDIR /app
COPY .output ./.output
RUN cd .output/server && npm install --omit=dev
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]