concordia-docker/concordia-aligner/Dockerfile

18 lines
659 B
Docker
Raw Normal View History

2019-06-13 12:35:38 +02:00
FROM ubuntu:16.04
# Set the locale
RUN apt-get update && apt-get install -y locales
RUN sed -i -e 's/# pl_PL.UTF-8 UTF-8/pl_PL.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
ENV LANG pl_PL.UTF-8
ENV LANGUAGE pl_PL:pl
ENV LC_ALL pl_PL.UTF-8
RUN apt-get install -y git cmake g++ python3 python3-pip
RUN pip3 install requests
2019-06-13 13:00:04 +02:00
RUN git clone https://git.wmi.amu.edu.pl/rjawor/concordia-aligner.git
2019-06-13 12:35:38 +02:00
RUN git clone https://github.com/clab/fast_align
2019-06-13 13:00:04 +02:00
RUN cd fast_align && mkdir build && cd build && cmake .. && make && cp fast_align ../../concordia-aligner/
2019-06-13 12:35:38 +02:00
#CMD cd concordia-server/fast-aligner/ && make SRC_LANG=pl TRG_LANG=en CORPUS_NAME=opensubtitles_sample