Files
2025-04-19 18:45:21 +01:00

12 lines
167 B
Docker

FROM node:18-alpine
WORKDIR /lk-results/
COPY . .
RUN npm install
RUN npm audit fix --force
RUN npm run build
RUN npm install -g serve
CMD ["serve", "-s", "dist"]