Files
gob-alert/apps/web/Dockerfile
alexandrump 82f3464565 first commit
2026-02-09 01:02:53 +01:00

14 lines
174 B
Docker

FROM node:18-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
ENV NODE_ENV=production
EXPOSE 3000
CMD ["npm", "run", "start"]