mirror of
https://github.com/googlefonts/noto-emoji.git
synced 2026-08-14 05:21:45 +00:00
22 lines
405 B
Docker
22 lines
405 B
Docker
FROM python:slim
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
make \
|
|
gcc \
|
|
zopfli \
|
|
libc-dev \
|
|
libpng-dev \
|
|
libcairo2-dev \
|
|
imagemagick \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install --no-cache notofonttools
|
|
|
|
ADD . /blobmoji
|
|
WORKDIR /blobmoji
|
|
|
|
RUN mkdir /output
|
|
|
|
CMD make -j $(nproc) && cp NotoColorEmoji.ttf /output/
|