python libheif

This commit is contained in:
Mateusz Gruszczyński
2025-07-19 22:56:38 +02:00
parent 114bf5c047
commit 69b1e9495f

View File

@@ -1,6 +1,15 @@
# Używamy lekkiego obrazu Pythona
FROM python:3.13-slim
# Zależności systemowe wymagane do pyheif
RUN apt-get update && apt-get install -y \
gcc \
libffi-dev \
libheif-dev \
python3-dev \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Ustawiamy katalog roboczy
WORKDIR /app