Files
LK_Landing_Page/Dockerfile
T

11 lines
141 B
Docker

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