mirror of
https://github.com/docker/cli.git
synced 2026-01-25 03:42:05 +03:00
Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Add tests for no-new-privileges Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Update documentation for no-new-privileges Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Upstream-commit: 74bb1ce9e9dbfa9dd866e84f891e865fca906d9a Component: engine
10 lines
154 B
Docker
10 lines
154 B
Docker
FROM buildpack-deps:jessie
|
|
|
|
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
|