grim/hgkeeper

Fix installing python packages via pip

3 months ago, Gary Kramlich
03e8cbced891
Parents ff57a21279e5
Children f33f223bc8fe
Fix installing python packages via pip
  • +1 -1
    Dockerfile
  • --- a/Dockerfile Wed Jan 31 04:15:23 2024 -0600
    +++ b/Dockerfile Wed Jan 31 04:22:17 2024 -0600
    @@ -14,7 +14,7 @@
    apk upgrade --available --update-cache && \
    apk add py3-pygments openssh-client mercurial-chg procps curl ca-certificates && \
    apk add --virtual deps python3-dev py3-pip py3-setuptools build-base && \
    - pip3 install --no-binary :all: hg-evolve hgwebplus && rm -r ~/.cache && \
    + pip3 install --break-system-packages --no-binary :all: hg-evolve hgwebplus && rm -r ~/.cache && \
    apk del deps && \
    rm -rf /var/cache/apk