[Answered ]-Error compiling Dockerfile to install wikipedia-API in Python

1👍

The issue is with installation getting corrupted for package six. You can overcome the issue by forcing reinstallation

RUN pip3 install six wikipedia-API --force

Leave a comment