3bfb6a9420
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
232 B
Docker
10 lines
232 B
Docker
FROM debian:bookworm-slim
|
|
RUN apt-get update && apt-get install -y gcc libc6-dev --no-install-recommends
|
|
|
|
COPY . /usr/src/
|
|
|
|
WORKDIR /usr/src/
|
|
|
|
RUN gcc -g -Wall -static nnp-test.c -o /usr/bin/nnp-test
|
|
|
|
RUN chmod +s /usr/bin/nnp-test
|