-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build a dev image based on Chrome 117
- Loading branch information
Showing
2 changed files
with
31 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Docker dev | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev-chrome-117 | ||
|
||
jobs: | ||
build-and-push: | ||
name: Deploy Docker Image | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Retrieve source code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build and push | ||
uses: openzim/docker-publish-action@v10 | ||
with: | ||
image-name: openzim/zimit | ||
manual-tag: dev-chrome-117-bis | ||
restrict-to: openzim/zimit | ||
registries: ghcr.io | ||
credentials: | ||
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | ||
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | ||
repo_description: auto | ||
repo_overview: auto | ||
platforms: | | ||
linux/amd64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,2 @@ | ||
FROM webrecorder/browsertrix-crawler:v0.11.0 | ||
FROM ghcr.io/benoit74/zimit:dev-chrome-117 | ||
LABEL org.opencontainers.image.source https://github.com/openzim/zimit | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -qqy --no-install-recommends \ | ||
libmagic1 \ | ||
python3.10-venv \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
# python setup (in venv not to conflict with browsertrix) | ||
&& python3 -m venv /app/zimit \ | ||
&& /app/zimit/bin/python -m pip install --no-cache-dir 'requests==2.31.0' 'inotify==0.2.10' 'tld==0.13' 'warc2zim==1.5.4' \ | ||
# placeholder (default output location) | ||
&& mkdir -p /output \ | ||
# disable chrome upgrade | ||
&& printf "repo_add_once=\"false\"\nrepo_reenable_on_distupgrade=\"false\"\n" > /etc/default/google-chrome \ | ||
# download list of bad domains to filter-out. intentionnaly ran post-install \ | ||
# so it's not cached in earlier layers (url stays same but content updated) \ | ||
mkdir -p /tmp/ads && cd /tmp/ads && \ | ||
curl -L -O https://hosts.anudeep.me/mirror/adservers.txt && \ | ||
curl -L -O https://hosts.anudeep.me/mirror/CoinMiner.txt && \ | ||
curl -L -O https://hosts.anudeep.me/mirror/facebook.txt && \ | ||
cat ./*.txt > /etc/blocklist.txt \ | ||
&& rm ./*.txt \ | ||
&& printf '#!/bin/sh\ncat /etc/blocklist.txt >> /etc/hosts\nexec "$@"' > /usr/local/bin/entrypoint.sh && \ | ||
chmod +x /usr/local/bin/entrypoint.sh | ||
|
||
WORKDIR /app | ||
ADD zimit.py /app/ | ||
# fix shebang on zimit to use in-venv python | ||
RUN sed -i.bak "1 s/.*/#!\/app\/zimit\/bin\/python3/" /app/zimit.py \ | ||
&& ln -s /app/zimit.py /usr/bin/zimit \ | ||
&& chmod +x /usr/bin/zimit | ||
|
||
ENTRYPOINT ["entrypoint.sh"] | ||
CMD ["zimit"] |