base_ui/dockerfile
2025-04-12 07:04:42 +03:30

14 lines
158 B
Plaintext

FROM node:22
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build-haditha
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]