feat: first commit

This commit is contained in:
devaine 2025-10-18 12:58:31 -05:00
commit ecb7899a97
No known key found for this signature in database
GPG key ID: 4BA6E50E8768348F
15 changed files with 6603 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM node:23-alpine
COPY . /codered-astra
WORKDIR /codered-astra
RUN npm i
EXPOSE 3000
RUN npm run format
RUN npm run build
CMD ["npm", "run", "host"]