diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-08-06 18:13:55 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-06 18:16:21 -0700 |
commit | f20e63e31b56784c596897e86f03441f9d05f567 (patch) | |
tree | 99139042eb7d7caeaa0dfcc866a303b14aa8e42c /images/basic/linktest/Dockerfile | |
parent | 90021e775a6e8059ea4f4262a16c4f962d3b9732 (diff) |
Add LinkAt support to gofer
Updates #1198
PiperOrigin-RevId: 325350818
Diffstat (limited to 'images/basic/linktest/Dockerfile')
-rw-r--r-- | images/basic/linktest/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/images/basic/linktest/Dockerfile b/images/basic/linktest/Dockerfile new file mode 100644 index 000000000..baebc9b76 --- /dev/null +++ b/images/basic/linktest/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu:bionic + +WORKDIR /root +COPY . . + +RUN apt-get update && apt-get install -y gcc +RUN gcc -O2 -o link_test link_test.c |