WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit be57523

Browse files
Keep Dockerfile for ci and Dockerfile.local for
working locally
1 parent bcf85ab commit be57523

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

selenium/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ FROM node:24 AS base
33
WORKDIR /code
44

55
COPY package.json package.json
6-
COPY .npmrc .npmrc
76

87
FROM base AS test
98
RUN npm install --verbose

selenium/Dockerfile.local

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM node:24 AS base
2+
3+
WORKDIR /code
4+
5+
COPY package.json package.json
6+
COPY .npmrc .npmrc
7+
8+
FROM base AS test
9+
RUN npm install --verbose
10+
11+
ENTRYPOINT [ "npm" ]
12+
CMD [ "" ]

0 commit comments

Comments
 (0)