Block a user
docker-scanner (latest)
Published 2025-12-01 22:37:44 +00:00 by pi-farm
Installation
docker pull git.pi-farm.de/pi-farm/docker-scanner:latestsha256:58ad1a1fceaac6e56eec73ea26993544a80ef66b44f5ad445a1c762c85ecdd45
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 5f05d34a75 | linux/arm64 | 539 MiB |
Image Layers ( linux/arm64)
| # debian.sh --arch 'arm64' out/ 'bookworm' '@1763337600' |
| ENV PYTHONDONTWRITEBYTECODE=1 |
| ENV PYTHONUNBUFFERED=1 |
| RUN /bin/sh -c apt-get update && apt-get install -y wget gnupg # buildkit |
| RUN /bin/sh -c wget -qO - https://archive.raspberrypi.org/debian/raspberrypi.gpg.key | gpg --dearmor -o /usr/share/keyrings/raspberrypi-archive-keyring.gpg && echo "deb [signed-by=/usr/share/keyrings/raspberrypi-archive-keyring.gpg] http://archive.raspberrypi.org/debian bookworm main" > /etc/apt/sources.list.d/raspi.list && apt-get update # buildkit |
| RUN /bin/sh -c apt-get update && apt-get install -y python3-picamera2 python3-libcamera libcamera-apps libcamera-v4l2 python3-opencv python3-dev python3-pip && apt-get clean # buildkit |
| WORKDIR /app |
| COPY requirements.txt . # buildkit |
| RUN /bin/sh -c pip install --no-cache-dir -r requirements.txt --break-system-packages # buildkit |
| COPY app.py . # buildkit |
| RUN /bin/sh -c mkdir -p data/raw data/processed data/output # buildkit |
| EXPOSE [5000/tcp] |
| CMD ["python3" "app.py"] |