build: add Docker-based development environment
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
FROM ubuntu:24.04
|
||||
|
||||
RUN apt update && apt install -y \
|
||||
build-essential \
|
||||
cmake \
|
||||
gdb \
|
||||
valgrind \
|
||||
git \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /project
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["bash"]
|
||||
Reference in New Issue
Block a user