Files
isspam/borded_cpp/Dockerfile
T
retoor e17945027b feat: add Dockerfile, compose.yml, and doit.sh for C++ build environment
Introduce a Docker-based development setup for the borded_cpp project. The Dockerfile uses Alpine Linux with build-base, SQLite, Jansson, and CMake. The compose.yml mounts the project directory and a shared books volume, runs doit.sh which cleans, configures, and builds the project via CMake.
2025-03-20 21:52:53 +00:00

4 lines
118 B
Docker

FROM alpine:latest
RUN apk update && apk add build-base sqlite-dev vim jansson-dev jansson-static cmake
WORKDIR /home