2
0
Files
fntbld-oci/Dockerfile
2026-03-14 21:14:49 +01:00

12 lines
267 B
Docker

FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
fontforge ttfautohint zip unzip curl \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
RUN pip install --no-cache-dir fonttools font-line
WORKDIR /build