github.com/tonistiigi/docker@v0.10.1-0.20240229224939-974013b0dc6a/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