libcreate/ci/Dockerfile
Konstantin Lampalzer 78424d187c
Some checks failed
Package / package (linux/arm64/v8) (push) Failing after 46s
cmake: do not install to opt
2024-09-23 21:13:21 +02:00

14 lines
340 B
Docker

FROM debian:bookworm
RUN apt update && \
apt install -y \
build-essential cmake git file tree \
libboost-system-dev libboost-thread-dev \
libgtest-dev googletest && \
rm -rf /var/lib/apt/lists/*
WORKDIR /libcreate
COPY . .
WORKDIR /libcreate/build
ENTRYPOINT ["/bin/bash", "/libcreate/ci/entrypoint.sh"]