Files
c_pompes/.devcontainer/Dockerfile

30 lines
485 B
Docker
Raw Normal View History

2025-11-30 09:48:43 +01:00
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"]