Kekkai/docs/Dockerfile

9 lines
101 B
Docker

FROM node:20-alpine
WORKDIR /
COPY ./package*.json .
RUN npm install
CMD ["npm", "run", "build"]