Skip to content
Discussion options

You must be logged in to vote

i asked chatGPT why and it seems that build-essential and tar were the missing packages to make everything work. So i modified the Dockerfile to add this:

RUN apt-get update && apt-get install -y \
	build-essential \
	cmake \
	expect \
	git \
	ninja-build \
	tar \
	python2 \
	unzip \
	wget \
	nodejs \
	npm \
	zip \
	&& rm -rf /var/lib/apt/lists/*

And now i can build the image without issues.
ChatGPT warned me about the version of Python used, and recommends me to use Python3 instead of Python2 that is obsolete.
I will try to build the new image from the other repo and test.

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@LeGeRyChEeSe
Comment options

@OneLiberty
Comment options

@LeGeRyChEeSe
Comment options

@LeGeRyChEeSe
Comment options

Answer selected by LeGeRyChEeSe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants