Skip to content

Commit

Permalink
Issue #3628: also build the devel images for otobo.selenium-chrome.do…
Browse files Browse the repository at this point in the history
…ckerfile
  • Loading branch information
bschmalhofer committed Jul 30, 2024
1 parent 256b59c commit d5b1826
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/docker_image_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

# create different images
matrix:
target: [ 'otobo-web', 'otobo-elasticsearch', 'otobo-nginx-webproxy', 'otobo-nginx-kerberos-webproxy' ]
target: [ 'otobo-web', 'otobo-elasticsearch', 'otobo-nginx-webproxy', 'otobo-nginx-kerberos-webproxy', 'otobo-selenium-chrome' ]
include:
-
target: 'otobo-web'
Expand All @@ -50,6 +50,12 @@ jobs:
context: 'scripts/nginx'
tag_prefix: 'devel'
repository: 'rotheross/otobo-nginx-kerberos-webproxy'
-
target: 'otobo-selenium-chrome'
dockerfile: 'otobo.selenium-chrome.dockerfile'
context: 'scripts/test/sample'
tag_prefix: 'devel'
repository: 'rotheross/otobo-nginx-kerberos-webproxy'

steps:

Expand Down
1 change: 1 addition & 0 deletions hooks/build
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ TARGET_OPTION=$(case $DOCKERFILE_PATH in
"otobo.elasticsearch.dockerfile") echo "--target=otobo-elasticsearch" ;;
"otobo.nginx.dockerfile") echo "--target=otobo-nginx-webproxy" ;;
"otobo.nginx-kerberos.dockerfile") echo "--target=otobo-nginx-kerberos-webproxy" ;;
"otobo.selenium-chrome.dockerfile") echo "--target=otobo-selenium-chrome" ;;
*) echo "" ;;
esac)

Expand Down
2 changes: 1 addition & 1 deletion otobo.selenium-chrome.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# See also https://doc.otobo.org/manual/installation/10.0/en/content/installation-docker.html

# note that selenium/standalone-chrome-debug:3.141.59-20210607 has changed behavior
FROM selenium/standalone-chrome-debug:3.141.59-20210422
FROM selenium/standalone-chrome-debug:3.141.59-20210422 AS otobo-selenium-chrome

# For the VNC-viewer, e.g. Remmina
EXPOSE 5900/tcp
Expand Down

0 comments on commit d5b1826

Please sign in to comment.