use distlib inside the zipapp docker image

This commit is contained in:
Anthony Sottile 2023-05-17 18:55:11 -04:00
parent a0a734750e
commit 18348f5d0d
2 changed files with 13 additions and 7 deletions

View file

@ -1,4 +1,4 @@
FROM ubuntu:focal
FROM ubuntu:jammy
RUN : \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
@ -11,4 +11,4 @@ RUN : \
ENV LANG=C.UTF-8 PATH=/venv/bin:$PATH
RUN : \
&& python3 -mvenv /venv \
&& pip install --no-cache-dir pip setuptools wheel no-manylinux --upgrade
&& pip install --no-cache-dir pip distlib no-manylinux --upgrade