blob: b9fed05cb596a18beeca5e34a16603a9fd23d8bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM ubuntu:bionic
WORKDIR /root
COPY . .
RUN chmod +x *.sh
RUN apt-get update && apt-get install -y gcc iputils-ping iproute2
# Compilation Steps.
RUN gcc -O2 -o test_copy_up test_copy_up.c
RUN gcc -O2 -o test_rewinddir test_rewinddir.c
RUN gcc -O2 -o link_test link_test.c
RUN gcc -O2 -o test_sticky test_sticky.c
|