Initial commit

This commit is contained in:
2025-11-30 09:48:43 +01:00
commit cd7d972808
8 changed files with 1414 additions and 0 deletions

29
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,29 @@
FROM debian:stable-slim
RUN RUN set -eux; \
apt-get update; \
apt-get install -y \
git \
build-essential \
cmake \
gdb;
RUN set -eux; \
apt-get update; \
apt-get install -y \
libncurses-dev \
libmicrohttpd-dev;\
apt-get clean
RUN set -eux; \
git clone https://github.com/jelmd/libprom.git; \
cd libprom; \
make build; \
cd prom/build; \
make install; \
cd ../../promhttp/build; \
make install;
WORKDIR /root
CMD ["sleep infinity"]