-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #707 from ReFirmLabs/extractor-cleanup
Fixed docker issues
- Loading branch information
Showing
2 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,41 @@ | ||
FROM ubuntu:24.04 | ||
|
||
ARG BINWALK_INSTALL_DIR="/tmp/binwalk" | ||
ARG DEFAULT_WORKING_DIR="/analysis" | ||
|
||
WORKDIR /tmp | ||
|
||
# Update apt and install git | ||
RUN apt-get update && apt-get upgrade -y && apt-get install -y git | ||
# Update apt | ||
RUN apt-get update && apt-get upgrade -y | ||
|
||
# Pull down latest Binwalk code | ||
RUN git clone https://github.com/ReFirmLabs/binwalk.git | ||
# Copy over the Binwalk build directory | ||
RUN mkdir -p ${BINWALK_INSTALL_DIR} | ||
COPY . ${BINWALK_INSTALL_DIR} | ||
|
||
# Allow pip to install packages system-wide | ||
RUN mkdir -p $HOME/.config/pip && echo "[global]" > $HOME/.config/pip/pip.conf && echo "break-system-packages = true" >> $HOME/.config/pip/pip.conf | ||
|
||
# Install all system dependencies | ||
RUN /tmp/binwalk/dependencies/ubuntu.sh | ||
RUN ${BINWALK_INSTALL_DIR}/dependencies/ubuntu.sh | ||
|
||
# Install Rust | ||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y | ||
|
||
# Build and install Binwalk | ||
RUN cd /tmp/binwalk && /root/.cargo/bin/cargo build --release && cp ./target/release/binwalk /usr/local/bin/binwalk | ||
RUN cd ${BINWALK_INSTALL_DIR} && /root/.cargo/bin/cargo build --release && cp ./target/release/binwalk /usr/local/bin/binwalk | ||
|
||
# Clean up binwalk build directory | ||
RUN rm -rf /tmp/binwalk | ||
RUN rm -rf ${BINWALK_INSTALL_DIR} | ||
|
||
RUN useradd -m -u 1337 -s /sbin/nologin appuser | ||
# Create the working directory | ||
RUN mkdir -p ${DEFAULT_WORKING_DIR} && chmod 777 ${DEFAULT_WORKING_DIR} | ||
WORKDIR ${DEFAULT_WORKING_DIR} | ||
|
||
WORKDIR /home/appuser | ||
# Run as the default ubuntu user | ||
USER ubuntu | ||
|
||
USER appuser | ||
# Enable this environment variable to remove extractor top-level symlink, | ||
# as the symlink target path in the docker environment will not match that of the host. | ||
ENV BINWALK_RM_EXTRACTION_SYMLINK=1 | ||
|
||
ENTRYPOINT [ "binwalk" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters