Files
navi/Dockerfile

12 lines
96 B
Docker

FROM node:22-slim
ENV PORT=80
WORKDIR /app
COPY . .
RUN npm ci
CMD ["npm", "run", "start"]