KPN/Dockerfile.builder
Duncan Tourolle 127ffb3849
Some checks failed
🧪 Test / test (push) Successful in 6m47s
🐳 Build Builder Image / build-and-push (push) Failing after 1s
Fix CI
2026-05-08 18:09:13 +02:00

20 lines
547 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 \
nodejs \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /src