mirror of
https://github.com/googlefonts/noto-emoji.git
synced 2026-08-14 05:21:45 +00:00
17 lines
341 B
Docker
17 lines
341 B
Docker
FROM python:buster
|
|
RUN apt update && apt install -y \
|
|
git \
|
|
zopfli \
|
|
libcairo2-dev
|
|
|
|
# Install nototools
|
|
RUN git clone https://github.com/googlefonts/nototools.git /nototools
|
|
WORKDIR /nototools
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install -e .
|
|
|
|
ADD . /blobmoji
|
|
WORKDIR /blobmoji
|
|
|
|
# Build blobmoji font
|
|
CMD make -j $(nproc)
|