Skip to content

Commit 82c5495

Browse files
author
Marshall Lee Whittaker
committed
Added a Dockerfile build scrpit.
1 parent f2f9aa9 commit 82c5495

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Dockerfile

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
FROM ubuntu:16.04
2+
3+
WORKDIR /src
4+
5+
RUN apt update && apt-get --no-install-recommends -yqq install \
6+
ca-certificates \
7+
git \
8+
automake \
9+
autoconf-archive \
10+
zlib1g-dev \
11+
g++ \
12+
libgcc-4.8-dev \
13+
gcc \
14+
gtk2.0
15+
16+
RUN git clone https://github.com/oxagast/ansvif.git
17+
WORKDIR ansvif
18+
RUN aclocal
19+
RUN autoconf
20+
RUN automake -a
21+
RUN ./configure --disable-gtk
22+
RUN make
23+
24+
25+
CMD ./ansvif -t examples/specific/flag_chars.txt -c ./generic_buffer_overflow -b 64 -z -L root

0 commit comments

Comments
 (0)