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 641317c commit e6e5868Copy full SHA for e6e5868
NodeFirefox/Dockerfile
@@ -17,6 +17,17 @@ RUN apt-get update -qqy \
17
&& mv /opt/firefox /opt/firefox-$FIREFOX_VERSION \
18
&& ln -fs /opt/firefox-$FIREFOX_VERSION/firefox /usr/bin/firefox
19
20
+#=======
21
+# Wires
22
23
+ENV WIRES_VERSION 0.6.2
24
+RUN wget --no-verbose -O /tmp/wires.gz https://github.com/jgraham/wires/releases/download/v$WIRES_VERSION/wires-$WIRES_VERSION-linux64.gz \
25
+ && rm -rf /opt/wires \
26
+ && gunzip -c /tmp/wires.gz > /opt/wires-$WIRES_VERSION \
27
+ && rm /tmp/wires.gz \
28
+ && chmod 755 /opt/wires-$WIRES_VERSION \
29
+ && ln -fs /opt/wires-$WIRES_VERSION /usr/bin/wires
30
+
31
#========================
32
# Selenium Configuration
33
0 commit comments