libcreate/ci/Dockerfile
2024-09-23 17:12:41 +02:00

14 lines
335 B
Docker

FROM debian:bookworm
RUN apt update && \
apt install -y \
build-essential cmake git file \
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"]