DEV Community

Discussion on: Laravel with PHP 8.2 in an Alpine Container

Collapse
 
gustavorglima profile image
Gustavo Lima

If are you getting this error "ModuleNotFoundError: No module named 'pkg_resources'" you need to install python3:

RUN apk add --no-cache zip unzip curl sqlite nginx python3-dev python3 supervisor \
&& curl -O https://bootstrap.pypa.io/get-pip.py \
&& python3 get-pip.py

Collapse
 
atreya profile image
Atreya

Thanks for that!

Some comments have been hidden by the post's author - find out more