-
-
Notifications
You must be signed in to change notification settings - Fork 870
Open
Labels
Description
I'm getting the following error building Detect-It-Easy with Docker:
~/dev/DIE-engine$ sudo docker build . -t horsicq:diec
[+] Building 161.4s (8/8) FINISHED docker:default
=> [internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 460B 0.0s
=> WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (li 0.0s
=> WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (li 0.0s
=> [internal] load metadata for docker.io/library/ubuntu:bionic 2.3s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> [source-internet 1/1] FROM docker.io/library/ubuntu:bionic@sha256:152 0.0s
=> CACHED [builder 1/4] RUN apt-get update --quiet 0.0s
=> CACHED [builder 2/4] RUN apt-get install --quiet --assume-yes g 0.0s
=> CACHED [builder 3/4] RUN git clone --recursive https://github.com/hor 0.0s
=> ERROR [builder 4/4] RUN cd DIE-engine && bash -x build_dpkg.sh && 159.0s
------
> [builder 4/4] RUN cd DIE-engine && bash -x build_dpkg.sh && bash -x install.sh:
.
.
.
147.9 Makefile:12249: recipe for target 'xlzwdecoder.o' failed
147.9 make[1]: Leaving directory '/DIE-engine/console_source'
147.9 make[1]: *** [xlzwdecoder.o] Error 1
147.9 make: *** [sub-console_source-make_first] Error 2
147.9 Makefile:72: recipe for target 'sub-console_source-make_first' failed
------
Dockerfile:18
--------------------
16 | RUN git clone --recursive https://github.com/horsicq/DIE-engine.git
17 |
18 | >>> RUN cd DIE-engine && bash -x build_dpkg.sh && bash -x install.sh
--------------------
ERROR: failed to solve: process "/bin/sh -c cd DIE-engine && bash -x build_dpkg.sh && bash -x install.sh" did not complete successfully: exit code: 2
These is my Ubuntu version:
Distributor ID: Ubuntu
Description: Ubuntu 22.04.5 LTS
Release: 22.04
horsicq