mirror of
https://github.com/belluzj/fantasque-sans.git
synced 2024-11-05 08:51:32 +01:00
22 lines
400 B
Docker
22 lines
400 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get install software-properties-common -y && \
|
|
add-apt-repository ppa:fontforge/fontforge -y && \
|
|
apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
fontforge \
|
|
woff-tools \
|
|
woff2 \
|
|
ttfautohint \
|
|
make \
|
|
zip
|
|
|
|
WORKDIR /fantasque
|
|
|
|
VOLUME /fantasque/Release
|
|
|
|
COPY . /fantasque
|
|
|
|
CMD ["make"]
|