dockerpi icon indicating copy to clipboard operation
dockerpi copied to clipboard

Dockerfile: there is no python anymore, use python3

Open spock opened this issue 2 years ago • 1 comments

python is not a valid package name anymore, thus explicitly using python3

fixes #60

spock avatar Dec 21 '23 12:12 spock

For clarity. Replacing this line: RUN apt-get -y install python build-essential libglib2.0-dev libpixman-1-dev ninja-build

With this: RUN apt-get -y install python3 python-is-python3 build-essential libglib2.0-dev libpixman-1-dev ninja-build

Isak-Landin avatar Jun 28 '25 11:06 Isak-Landin