Skip to content

Commit

Permalink
use chrome v111
Browse files Browse the repository at this point in the history
  • Loading branch information
louisholley committed Jan 23, 2025
1 parent 2882d89 commit e609729
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
.
docker push --all-tags $ECR_REGISTRY/$ECR_REPOSITORY
- name: Build, tag, and push Chrome v126 image to Amazon ECR
- name: Build, tag, and push Chrome v111 image to Amazon ECR
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: fxhash/chromium-extract
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -f Dockerfile.v126 \
-t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG-v126 \
-t $ECR_REGISTRY/$ECR_REPOSITORY:${GITHUB_REF##*/}-v126 \
docker build -f Dockerfile.v111 \
-t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG-v111 \
-t $ECR_REGISTRY/$ECR_REPOSITORY:${GITHUB_REF##*/}-v111 \
.
docker push --all-tags $ECR_REGISTRY/$ECR_REPOSITORY
2 changes: 1 addition & 1 deletion Dockerfile.v126 → Dockerfile.v111
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get install -y curl wget gnupg

# Install specific version of Chrome
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
ENV CHROME_VERSION=126.0.6478.182-1
ENV CHROME_VERSION=111.0.5563.146-1
RUN wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb
RUN apt-get -y update
RUN apt-get install -y ./google-chrome-stable_${CHROME_VERSION}_amd64.deb
Expand Down

0 comments on commit e609729

Please sign in to comment.