mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5ba3208ec7
Signed-off-by: Prabhav Thali <Prabhav.Thali1@ibm.com>
10 lines
232 B
Docker
10 lines
232 B
Docker
FROM debian:bullseye-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
|