CodeRED-Astra/frontend/Dockerfile
devaine d6378b8eb1
Some checks failed
Build and Deploy / Build Images and Deploy to Server (push) Has been cancelled
fix(repo): we start over, its really that time
2025-10-25 13:28:40 -05:00

9 lines
150 B
Docker

FROM node:23-alpine
WORKDIR /app
COPY package*.json ./
RUN npm i
COPY . .
RUN npm run format && npm run build
EXPOSE 3000
CMD ["node", "server.mjs"]