mirror of
https://github.com/googlefonts/noto-emoji.git
synced 2025-07-08 21:36:59 +00:00
Add Dockerfile for building within a container
This commit is contained in:
parent
7feee66c57
commit
4dc4c3464c
2 changed files with 22 additions and 0 deletions
5
.dockerignore
Normal file
5
.dockerignore
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
add_emoji_gsub.pyc
|
||||||
|
build
|
||||||
|
waveflag
|
||||||
|
|
||||||
|
.git/
|
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
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)
|
Loading…
Add table
Reference in a new issue