File: Dockerfile

package info (click to toggle)
fonts-fantasque-sans 1.8.0%2Bgit20220316%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,104 kB
  • sloc: python: 269; sh: 214; makefile: 23
file content (21 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"]