Nav init
All checks were successful
Build and publish / Build Container (push) Successful in 1m29s

This commit is contained in:
2026-02-28 23:27:35 -05:00
parent 204091ef4c
commit 4735968612
19 changed files with 5340 additions and 63 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:22-alpine
ENV PORT=80
WORKDIR /app
COPY . .
RUN npm ci
CMD ["npm", "run", "start"]