diff --git a/dockerfile b/dockerfile index 750ecb90..c7aa2325 100644 --- a/dockerfile +++ b/dockerfile @@ -14,7 +14,7 @@ COPY ./ /havocsrc #Fetch dependencies from APT RUN apt-get update && \ - apt-get install -y tar wget dfu-util cmake python bzip2 curl python3 python3-yaml && \ + apt-get install -y tar wget dfu-util cmake python bzip2 lz4 curl python3 python3-yaml && \ apt-get -qy autoremove #Install current pip from PyPa diff --git a/dockerfile-alpine b/dockerfile-alpine index 4b680a24..efcff762 100644 --- a/dockerfile-alpine +++ b/dockerfile-alpine @@ -13,7 +13,7 @@ COPY ./ /havocsrc # Fetch dependencies from APK RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN apk update -U -RUN apk add --no-cache git tar wget cmake curl bzip2 make +RUN apk add --no-cache git tar wget cmake curl bzip2 lz4 make RUN apk add --no-cache dfu-util ccache icu-data-full RUN apk add --no-cache python3 py3-pip py3-yaml RUN apk add --no-cache py3-pyyaml-env-tag diff --git a/dockerfile-nogit b/dockerfile-nogit index a48a5522..862dc418 100644 --- a/dockerfile-nogit +++ b/dockerfile-nogit @@ -11,7 +11,7 @@ WORKDIR /havoc/firmware # Fetch dependencies from APT RUN apt-get update && \ - apt-get install -y git tar wget dfu-util cmake python3 ccache bzip2 curl && \ + apt-get install -y git tar wget dfu-util cmake python3 ccache bzip2 liblz4-tool curl && \ apt-get -qy autoremove #Install current pip from PyPa diff --git a/dockerfile-nogit-alpine b/dockerfile-nogit-alpine index 8cfe172d..f2f3a683 100644 --- a/dockerfile-nogit-alpine +++ b/dockerfile-nogit-alpine @@ -10,7 +10,7 @@ WORKDIR /havoc/firmware # Fetch dependencies from APK RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN apk update -U -RUN apk add --no-cache git tar wget cmake curl bzip2 make +RUN apk add --no-cache git tar wget cmake curl bzip2 lz4 make RUN apk add --no-cache dfu-util ccache icu-data-full RUN apk add --no-cache python3 py3-pip py3-yaml RUN apk add --no-cache py3-pyyaml-env-tag