We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ba317 commit e07eee5Copy full SHA for e07eee5
Dockerfile
@@ -4,6 +4,9 @@ ENV NODE_ENV=production
4
ENV APP_USER=
5
ENV APP_PASS=
6
ENV SE_TTL=36000000
7
+ENV SE_DEBUG=true
8
+ENV SE_TRACE=true
9
+ENV SE_AVOID_BROWSER_DOWNLOAD=true
10
11
WORKDIR /app
12
@@ -22,7 +25,8 @@ ADD . /app/
22
25
# install dependencies
23
26
RUN npm install --omit=dev
24
27
RUN npm install pm2 -g
-RUN ./node_modules/selenium-webdriver/bin/linux/selenium-manager --browser chrome
28
+RUN SE_AVOID_BROWSER_DOWNLOAD=false ./node_modules/selenium-webdriver/bin/linux/selenium-manager --browser chrome
29
RUN chmod +x /app/entrypoint.sh
30
+RUN export
31
32
CMD ["/bin/bash", "/app/entrypoint.sh"]
0 commit comments