Compare commits

..
2 Commits
Author SHA1 Message Date
butomo1989 cde35287c7 Using the latest base image 2018-05-12 13:13:21 +02:00
butomo1989 29898ba91e Fixed issue #52 2018-05-11 00:43:16 +02:00
4 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM appium/appium:1.8.0-p0
FROM appium/appium:1.8.0-p1
LABEL maintainer "Budi Utomo <budi.ut.1989@gmail.com>"
+1 -1
View File
@@ -1,4 +1,4 @@
FROM appium/appium:1.8.0-p0
FROM appium/appium:1.8.0-p1
LABEL maintainer "Budi Utomo <budi.ut.1989@gmail.com>"
+2 -2
View File
@@ -1,4 +1,4 @@
FROM appium/appium:1.8.0-p0
FROM appium/appium:1.8.0-p1
LABEL maintainer "Budi Utomo <budi.ut.1989@gmail.com>"
@@ -38,7 +38,7 @@ WORKDIR /root
# Sed for JSON data
#==================
RUN apt-get -qqy update && apt-get -qqy install --no-install-recommends \
xterm \
xterm \
supervisor \
socat \
x11vnc \
+2 -1
View File
@@ -105,7 +105,8 @@ def appium_run(avd_name: str):
:param avd_name: Name of android virtual device / emulator
"""
cmd = 'appium'
DEFAULT_LOG_PATH = '/var/log/supervisor/appium.log'
cmd = 'appium --log {log}'.format(log=os.getenv('APPIUM_LOG', DEFAULT_LOG_PATH))
default_web_browser = os.getenv('BROWSER')
if default_web_browser == 'chrome':