File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11FROM python:3.12 AS builder
22
33COPY --from=ghcr.io/astral-sh/uv:0.6.9 /uv /uvx /bin/
4- RUN apk add git
4+ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
55ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
66# Disable Python downloads, because we want to use the system interpreter
77# across both images. If using a managed Python version, it needs to be
@@ -20,7 +20,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2020
2121# Then, use a final image without uv
2222FROM python:3.12
23- RUN apk add ffmpeg
23+ RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
2424
2525# It is important to use the image that matches the builder, as the path to the
2626# Python executable must be the same, e.g., using `python:3.11-slim-bookworm`
You can’t perform that action at this time.
0 commit comments