bemadam-ci (latest)
Published 2026-01-30 18:34:32 +01:00 by jbl
Installation
docker pull git.ut0pia.org/jbl/bemadam-ci:latestsha256:d4b095c325755662b6c504b6649a429f97ab036c190c5e281d264e300013fcceImage layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1768176000' |
| RUN /bin/sh -c apt-get update && apt-get install -y curl wget gnupg ca-certificates && curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && apt-get install -y nodejs && node --version && npm --version # buildkit |
| RUN /bin/sh -c corepack enable && corepack prepare yarn@4.12.0 --activate && yarn --version # buildkit |
| RUN /bin/sh -c wget -qO - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && echo "deb http://apt.postgresql.org/pub/repos/apt bookworm-pgdg main" > /etc/apt/sources.list.d/pgdg.list && apt-get update && apt-get install -y postgresql-18 postgresql-client-18 && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c rm -rf /var/lib/postgresql/18/main && mkdir -p /var/lib/postgresql/18/main && chown postgres:postgres /var/lib/postgresql/18/main && su - postgres -c "/usr/lib/postgresql/18/bin/initdb -D /var/lib/postgresql/18/main" # buildkit |
| WORKDIR /workspace |