Remove webdriver manager from Docker (#4390)
* Remove webdriver manager from Docker files
This commit is contained in:
parent
2db8158f03
commit
63ca4178af
|
|
@ -28,8 +28,10 @@ WORKDIR /usr/src/app
|
|||
COPY package.json /usr/src/app/
|
||||
COPY npm-shrinkwrap.json /usr/src/app/
|
||||
COPY tools/postinstall.js /usr/src/app/tools/postinstall.js
|
||||
RUN npm install --production && npm cache clean --force
|
||||
RUN npm install --production && npm cache clean --force
|
||||
|
||||
COPY . /usr/src/app
|
||||
RUN rm -fR /usr/src/app/node_modules/selenium-webdriver/bin
|
||||
|
||||
COPY docker/scripts/start.sh /start.sh
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ RUN mkdir -p /usr/src/app
|
|||
WORKDIR /usr/src/app
|
||||
COPY . /usr/src/app
|
||||
COPY tools/postinstall.js /usr/src/app/tools/postinstall.js
|
||||
RUN CHROMEDRIVER_SKIP_DOWNLOAD=true EGDEDRIVER_SKIP_DOWNLOAD=true npm install --production && npm cache clean --force && npm uninstall npm npx -g
|
||||
RUN CHROMEDRIVER_SKIP_DOWNLOAD=true EGDEDRIVER_SKIP_DOWNLOAD=true npm install --production && npm cache clean --force && npm uninstall npm npx -g && rm -fR /usr/src/app/node_modules/selenium-webdriver/bin
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY docker/scripts/start-slim.sh /start.sh
|
||||
|
|
|
|||
Loading…
Reference in New Issue