rabbitmq-server/selenium/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
136 B
Docker
Raw Normal View History

2025-05-26 23:15:02 +08:00
FROM node:18 as base
WORKDIR /code
COPY package.json package.json
FROM base as test
RUN npm install
2023-08-14 18:51:46 +08:00
ENTRYPOINT [ "npm" ]
2022-08-26 17:57:35 +08:00
CMD [ "" ]