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.
4 lines
118 B
Docker
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
|