KPN/Dockerfile.builder
Duncan Tourolle 2a5c0a0b4d
Some checks failed
🧪 Test / test (push) Failing after 1s
🐳 Build Builder Image / build-and-push (push) Failing after 1s
Add build infra
2026-05-08 18:00:03 +02:00

19 lines
534 B
Ruby

# KPN++ Builder Image
# Pre-built image with GCC, CMake, Ninja, and Python dev headers for building and testing KPN++
# Build: docker build -f Dockerfile.builder -t gitea.tourolle.paris/dtourolle/kpnpp-builder:latest .
# Push: docker push gitea.tourolle.paris/dtourolle/kpnpp-builder:latest
FROM gcc:14
RUN apt-get update && apt-get install -y --no-install-recommends \
cmake \
ninja-build \
python3 \
python3-dev \
python3-pip \
git \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /src