Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
FROM node:18 as base
WORKDIR /code
COPY package.json package.json
FROM base as test
RUN npm install
ENTRYPOINT [ "npm" ]
CMD [ "" ]