Add builder image, fix runners
Some checks failed
Build and Push Builder Image / build-and-push (push) Failing after 17s

This commit is contained in:
2025-10-30 18:48:30 -04:00
parent d8a44c7dea
commit 476b9c9a2c
3 changed files with 65 additions and 26 deletions

24
docker/Dockerfile Normal file
View File

@@ -0,0 +1,24 @@
# Start from the same base as our target
FROM ubuntu:24.04
# Set non-interactive mode for apt to prevent it from asking questions
ENV DEBIAN_FRONTEND=noninteractive
# Update, install build tools, and install chrony's specific build-deps
RUN apt-get update && \
apt-get install -y \
build-essential \
debhelper \
devscripts \
dpkg-dev \
git \
curl \
gnupg \
# Chrony's specific dependencies (from its debian/control file)
libcap-dev \
libedit-dev \
libgnutls28-dev \
libnss3-dev \
libseccomp-dev \
# Clean up apt cache
&& rm -rf /var/lib/apt/lists/*