File: Dockerfile

package info (click to toggle)
hfst 3.16.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,532 kB
  • sloc: cpp: 101,875; sh: 6,717; python: 5,225; yacc: 4,985; lex: 2,900; makefile: 2,017; xml: 6
file content (16 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Minimal dockerfile to test hfst

FROM ubuntu:latest
MAINTAINER Flammie A Pirinen <flammie@iki.fi>

RUN apt-get update && \
    DEBIAN_FRONTEND=noninteractive apt-get install -y \
    build-essential automake autoconf git wget lsb-release libtool zip \
    pkg-config libicu-dev libfst-dev libfoma-dev zlib1g-dev bison flex &&\
    git clone https://github.com/hfst/hfst && \
    cd hfst && \ 
    ./autogen.sh && \
    ./configure && \
    make && \
    make check