pidgin/builders

Move the build image from buster to bookworm
release-2.x.y
2021-09-29, Gary Kramlich
4efe191f6ea2
Parents 991a9103fb1e
Children 2735f1aa4e2b
Move the build image from buster to bookworm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Dockerfile.debian-bookworm-amd64 Wed Sep 29 01:37:12 2021 -0500
@@ -0,0 +1,19 @@
+FROM debian:bookworm-slim
+
+RUN set -ex && \
+ echo deb-src http://httpredir.debian.org/debian bookworm main | tee -a /etc/apt/sources.list && \
+ apt-get update && \
+ apt-get build-dep -y pidgin && \
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists/*
+
+RUN set -ex && \
+ apt-get update && \
+ apt-get install -y \
+ mercurial automake autoconf libtool gtk-doc-tools curl ca-certificates meson && \
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists/*
+
+COPY simple/build.sh /usr/local/bin/build.sh
+
+CMD ["build.sh"]
--- a/Dockerfile.debian-buster-amd64 Mon Dec 14 22:38:36 2020 -0600
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-FROM debian:buster-slim
-
-ENV DISTRO=debian
-ENV VERSION=buster
-ENV ARCH=amd64
-
-RUN set -ex && \
- echo deb-src http://httpredir.debian.org/debian buster main | tee -a /etc/apt/sources.list && \
- apt-get update && \
- apt-get build-dep -y pidgin && \
- apt-get clean && \
- rm -rf /var/lib/apt/lists/*
-
-RUN set -ex && \
- apt-get update && \
- apt-get install -y \
- mercurial automake autoconf libtool gtk-doc-tools curl ca-certificates meson && \
- apt-get clean && \
- rm -rf /var/lib/apt/lists/*
-
-COPY simple/build.sh /usr/local/bin/build.sh
-
-CMD ["build.sh"]
--- a/convey.yml Mon Dec 14 22:38:36 2020 -0600
+++ b/convey.yml Wed Sep 29 01:37:12 2021 -0500
@@ -1,9 +1,8 @@
environment:
- - ARCH=amd64
- - REPO=pidgin/builders-2
+ - REGISTRY=docker.io
- REGISTRY_USERNAME
- REGISTRY_PASSWORD
- - REGISTRY=docker.io
+ - REPO=pidgin/2.x.y-builders
tasks:
import:
@@ -39,8 +38,8 @@
images: ${REGISTRY}/${REPO}:${TARGET}
plans:
- debian-buster-amd64:
- environment: TARGET=debian-buster-amd64
+ debian-bookworm-amd64:
+ environment: TARGET=debian-bookworm-amd64
stages:
- tasks: [import, build]