A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

silence warnings on apt install

+4
+2
Dockerfile.appview
··· 1 1 FROM docker.io/golang:1.25.2-trixie AS builder 2 2 3 + ENV DEBIAN_FRONTEND=noninteractive 4 + 3 5 RUN apt-get update && \ 4 6 apt-get install -y --no-install-recommends sqlite3 libsqlite3-dev && \ 5 7 rm -rf /var/lib/apt/lists/*
+2
Dockerfile.hold
··· 1 1 FROM docker.io/golang:1.25.2-trixie AS builder 2 2 3 + ENV DEBIAN_FRONTEND=noninteractive 4 + 3 5 RUN apt-get update && \ 4 6 apt-get install -y --no-install-recommends sqlite3 libsqlite3-dev && \ 5 7 rm -rf /var/lib/apt/lists/*