i hate python package management so much

This commit is contained in:
Cynthia Foxwell 2025-08-23 15:14:14 -06:00
parent db70127421
commit 4a962ef7b0
Signed by: Cynosphere
SSH key fingerprint: SHA256:H3SM8ufP/uxqLwKSH7xY89TDnbR9uOHzjLoBr0tlajk

View file

@ -5,8 +5,7 @@ RUN corepack enable
COPY . /app
WORKDIR /app
RUN apk add --no-cache ffmpeg python3
RUN python3 -m ensurepip
RUN apk add --no-cache ffmpeg python3 py3-pip
RUN pip3 install --no-cache --upgrade pip setuptools
FROM base AS deps