github.com/moby/docker@v26.1.3+incompatible/contrib/nnp-test/Dockerfile (about) 1 FROM debian:bookworm-slim 2 RUN apt-get update && apt-get install -y gcc libc6-dev --no-install-recommends 3 4 COPY . /usr/src/ 5 6 WORKDIR /usr/src/ 7 8 RUN gcc -g -Wall -static nnp-test.c -o /usr/bin/nnp-test 9 10 RUN chmod +s /usr/bin/nnp-test