Created
November 18, 2024 00:04
-
-
Save douglasmiranda/2ae3a1c11bb6220e7218f33ee6c53680 to your computer and use it in GitHub Desktop.
Dockerfile - Microsoft Fonts - Installing .deb directly - Debian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:bookworm | |
# Debian 12 (Bookworm) | |
# MS Fonts | |
ARG MS_FONTS_VERSION=3.8.1 | |
RUN apt-get update && apt-get install --no-install-recommends -y \ | |
# Custom dependencies | |
# ttf-mscorefonts-installer requires extra setup, adding contrib repo | |
# that might generate conflict with other dependencies | |
# so here we install directly the deb package | |
# https://packages.debian.org/sid/all/ttf-mscorefonts-installer/download | |
&& wget http://ftp.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_${MS_FONTS_VERSION}_all.deb \ | |
&& apt install -y ./ttf-mscorefonts-installer_${MS_FONTS_VERSION}_all.deb \ | |
&& rm ttf-mscorefonts-installer_${MS_FONTS_VERSION}_all.deb \ | |
# Cleanup | |
&& apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment