Peter Woolery admin
  • Joined on 2025-02-21

ebay-scraper (latest)

Published 2026-06-10 09:07:47 -07:00 by admin

Installation

docker pull git.research.bike/admin/ebay-scraper:latest
sha256:32a5f0e801fdac5513408eb8b627de23929164efd1dfd1feaa57aca9e85803f0

Image Layers

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.version=24.04
ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in /
CMD ["/bin/bash"]
SHELL [/bin/bash -o pipefail -c]
ENV PYTHONUNBUFFERED=1
ENV PYTHONIOENCODING=UTF-8
ENV DEBIAN_FRONTEND=noninteractive
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt-get install -y --no-install-recommends tzdata locales # buildkit
RUN /bin/bash -o pipefail -c sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen # buildkit
ENV TZ=America/New_York
RUN /bin/bash -o pipefail -c ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone # buildkit
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENV LC_ALL=en_US.UTF-8
RUN /bin/bash -o pipefail -c echo "LC_ALL=en_US.UTF-8" >> /etc/environment # buildkit
RUN /bin/bash -o pipefail -c echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen # buildkit
RUN /bin/bash -o pipefail -c echo "LANG=en_US.UTF-8" > /etc/locale.conf # buildkit
RUN /bin/bash -o pipefail -c locale-gen en_US.UTF-8 # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt install -y fonts-liberation fonts-noto-color-emoji libvulkan1 libnss3 libatk-bridge2.0-0 libcups2 libxcomposite1 libxrandr2 libgbm1 libpango-1.0-0 libcairo2 # buildkit
RUN /bin/bash -o pipefail -c apt install -y fonts-freefont-ttf fonts-dejavu-core fonts-ubuntu fonts-roboto fonts-droid-fallback # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt-get install -y fonts-liberation2 fonts-font-awesome fonts-terminus fonts-powerline fonts-open-sans fonts-mononoki fonts-lato # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt-get install -y dbus-x11 libatk1.0-0 libatspi2.0-0 libdbus-1-3 libdrm2 libgtk-3-0 libnspr4 libasound2t64 libu2f-udev libwayland-client0 libx11-6 libx11-xcb1 libxdamage1 libxfixes3 libxkbcommon0 # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt-get install -y xdg-utils ca-certificates x11vnc # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt-get -qy --no-install-recommends install curl sudo unzip vim wget xvfb # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb # buildkit
RUN /bin/bash -o pipefail -c apt-get install -y ./google-chrome-stable_current_amd64.deb # buildkit
RUN /bin/bash -o pipefail -c rm ./google-chrome-stable_current_amd64.deb # buildkit
RUN /bin/bash -o pipefail -c apt-get update && apt-get install -y software-properties-common # buildkit
RUN /bin/bash -o pipefail -c add-apt-repository ppa:deadsnakes/ppa -y # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt-get install -y python3.13 python3.13-venv python3.13-dev build-essential # buildkit
RUN /bin/bash -o pipefail -c update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.13 1 # buildkit
RUN /bin/bash -o pipefail -c apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/bash -o pipefail -c python3.13 -m ensurepip --upgrade # buildkit
RUN /bin/bash -o pipefail -c python3.13 -m pip install --upgrade pip # buildkit
RUN /bin/bash -o pipefail -c apt-get update # buildkit
RUN /bin/bash -o pipefail -c apt-get install -y python3.13-tk python3.13-dev # buildkit
RUN /bin/bash -o pipefail -c alias python=python3 # buildkit
RUN /bin/bash -o pipefail -c echo "alias python=python3" >> ~/.bashrc # buildkit
RUN /bin/bash -o pipefail -c rm /usr/bin/python3 # buildkit
RUN /bin/bash -o pipefail -c ln -s python3.13 /usr/bin/python3 # buildkit
RUN /bin/bash -o pipefail -c apt-get clean # buildkit
RUN /bin/bash -o pipefail -c rm -rf /var/lib/apt/lists/* # buildkit
COPY sbase /SeleniumBase/sbase/ # buildkit
COPY seleniumbase /SeleniumBase/seleniumbase/ # buildkit
COPY examples /SeleniumBase/examples/ # buildkit
COPY integrations /SeleniumBase/integrations/ # buildkit
COPY requirements.txt /SeleniumBase/requirements.txt # buildkit
COPY setup.py /SeleniumBase/setup.py # buildkit
COPY MANIFEST.in /SeleniumBase/MANIFEST.in # buildkit
COPY pytest.ini /SeleniumBase/pytest.ini # buildkit
COPY setup.cfg /SeleniumBase/setup.cfg # buildkit
COPY virtualenv_install.sh /SeleniumBase/virtualenv_install.sh # buildkit
RUN /bin/bash -o pipefail -c find . -name '*.pyc' -delete # buildkit
RUN /bin/bash -o pipefail -c pip install --upgrade pip setuptools wheel # buildkit
RUN /bin/bash -o pipefail -c cd /SeleniumBase && ls && pip install -r requirements.txt --upgrade # buildkit
RUN /bin/bash -o pipefail -c cd /SeleniumBase && pip install . # buildkit
RUN /bin/bash -o pipefail -c pip install pyautogui # buildkit
RUN /bin/bash -o pipefail -c pip install playwright # buildkit
RUN /bin/bash -o pipefail -c seleniumbase get cft # buildkit
RUN /bin/bash -o pipefail -c seleniumbase get chromium # buildkit
RUN /bin/bash -o pipefail -c seleniumbase get chromedriver --path # buildkit
ENV DISPLAY=:99
RUN /bin/bash -o pipefail -c Xvfb :99 -screen 1 1920x1080x16 -nolisten tcp & # buildkit
COPY integrations/docker/docker-entrypoint.sh / # buildkit
COPY integrations/docker/run_docker_test_in_chrome.sh / # buildkit
RUN /bin/bash -o pipefail -c chmod +x *.sh # buildkit
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["/bin/bash"]
ENV PYTHONUNBUFFERED=1 PYTHONIOENCODING=UTF-8 PIP_DISABLE_PIP_VERSION_CHECK=1 PIP_NO_CACHE_DIR=1
WORKDIR /app
RUN /bin/bash -o pipefail -c apt-get update && apt-get remove -y python3-cryptography && apt-get autoremove -y && apt-get install -y --no-install-recommends tini && rm -rf /var/lib/apt/lists/* # buildkit
COPY requirements.txt . # buildkit
RUN /bin/bash -o pipefail -c python3 -m pip install --break-system-packages -r requirements.txt # buildkit
RUN /bin/bash -o pipefail -c python3 -m pip install --break-system-packages py-spy # buildkit
RUN /bin/bash -o pipefail -c chmod -R +x /usr/local/lib/python3.13/dist-packages/seleniumbase/drivers/ || true # buildkit
COPY ebay_scraper/ ./ebay_scraper/ # buildkit
ENTRYPOINT ["/usr/bin/tini" "--" "python3" "-m" "ebay_scraper"]
CMD ["--help"]

Labels

Key Value
org.opencontainers.image.version 24.04
Details
Container
2026-06-10 09:07:47 -07:00
57
OCI / Docker
linux/amd64
1.7 GiB
Versions (1) View all
latest 2026-06-10