Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Last active June 11, 2023 08:01
Show Gist options
  • Save selcukusta/404236525ecd8de0eadc944f90c7157d to your computer and use it in GitHub Desktop.
Save selcukusta/404236525ecd8de0eadc944f90c7157d to your computer and use it in GitHub Desktop.
Using MS font family in Debian 9 based ASP.NET Core Docker images
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-stretch-slim as runtime
RUN apt-get update && \
apt-get install -y wget \
fontconfig && \
wget http://ftp.br.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb && \
apt --fix-broken install -y ./ttf-mscorefonts-installer_3.6_all.deb && \
rm ttf-mscorefonts-installer_3.6_all.deb && \
fc-cache -f -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment