Skip to content

Commit

Permalink
Upgrade geckodriver to 0.26.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Oct 14, 2019
1 parent caab48e commit 783a141
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM debian:buster-slim

ARG firefox_ver=69.0
ARG geckodriver_ver=0.25.0
ARG geckodriver_ver=0.26.0

RUN apt-get update \
&& apt-get upgrade -y \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ eq = $(if $(or $(1),$(2)),$(and $(findstring $(1),$(2)),\
$(findstring $(2),$(1))),1)

FIREFOX_VER ?= 69.0
GECKODRIVER_VER ?= 0.25.0
GECKODRIVER_VER ?= 0.26.0

IMAGE_NAME := instrumentisto/geckodriver
TAGS ?= $(FIREFOX_VER)-driver$(GECKODRIVER_VER)-debian-buster \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ geckodriver Docker image

## Supported tags and respective `Dockerfile` links

- `69.0-driver0.25.0-debian-buster`, `69.0-driver0.25.0-debian`, `69.0-driver0.25.0`, `69.0-debian-buster`, `69.0-debian`, `69.0`, `debian-buster`, `debian`, `latest` [(Dockerfile)][101]
- `69.0-driver0.26.0-debian-buster`, `69.0-driver0.26.0-debian`, `69.0-driver0.26.0`, `69.0-debian-buster`, `69.0-debian`, `69.0`, `debian-buster`, `debian`, `latest` [(Dockerfile)][101]



Expand Down
2 changes: 1 addition & 1 deletion hooks/post_push
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tagStart=$(expr index "$IMAGE_NAME" :)
repoName=${IMAGE_NAME:0:tagStart-1}

# Tag and push image for each additional tag
for tag in {69.0-driver0.25.0-debian-buster,69.0-driver0.25.0-debian,69.0-driver0.25.0,69.0-debian-buster,69.0-debian,69.0,debian-buster,debian,latest}; do
for tag in {69.0-driver0.26.0-debian-buster,69.0-driver0.26.0-debian,69.0-driver0.26.0,69.0-debian-buster,69.0-debian,69.0,debian-buster,debian,latest}; do
docker tag $IMAGE_NAME ${repoName}:${tag}
docker push ${repoName}:${tag}
done

1 comment on commit 783a141

@tyranron
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ack @alexlapa

Please sign in to comment.