Dockerfile 232 B

12345678910
  1. FROM debian:bookworm-slim
  2. RUN apt-get update && apt-get install -y gcc libc6-dev --no-install-recommends
  3. COPY . /usr/src/
  4. WORKDIR /usr/src/
  5. RUN gcc -g -Wall -static nnp-test.c -o /usr/bin/nnp-test
  6. RUN chmod +s /usr/bin/nnp-test