Skip to content

Commit

Permalink
updated Debian Dockerfile to meet current requirements. changed the g…
Browse files Browse the repository at this point in the history
…it repo target for dwarfdump.
  • Loading branch information
dannen committed May 25, 2022
1 parent e4a732f commit 49b62da
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,25 @@ RUN mkdir /lime-module /debs
# x86_64 only
RUN apt update && \
apt install -y \
apt-utils \
autoconf \
build-essential \
git \
libelf-dev \
zip && \
libtool \
pkg-config \
zip \
zlib1g && \
apt clean all
WORKDIR /
RUN git clone git://git.code.sf.net/p/libdwarf/code && \
cd /code && \
/bin/bash scripts/FIX-CONFIGURE-TIMES && \
./configure && \
make > /tmp/log-file && \
cp -p /code/dwarfdump/dwarfdump /bin/dwarfdump && \
RUN git clone https://github.com/davea42/libdwarf-code.git && \
cd /libdwarf-code && \
/bin/bash autogen.sh && \
./configure --disable-dependency-tracking && \
make > /tmp/log-file 2>&1 && \
cp -p /libdwarf-code/src/bin/dwarfdump/dwarfdump /bin/dwarfdump && \
cd / && \
rm -rf /code
rm -rf /libdwarf-code
RUN git clone https://github.com/504ensicsLabs/LiME.git
RUN git clone https://github.com/volatilityfoundation/volatility.git

Expand Down

0 comments on commit 49b62da

Please sign in to comment.