18 lines
659 B
Docker
18 lines
659 B
Docker
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
|
|
RUN git clone https://git.wmi.amu.edu.pl/rjawor/concordia-aligner.git
|
|
RUN git clone https://github.com/clab/fast_align
|
|
RUN cd fast_align && mkdir build && cd build && cmake .. && make && cp fast_align ../../concordia-aligner/
|
|
|
|
|
|
#CMD cd concordia-server/fast-aligner/ && make SRC_LANG=pl TRG_LANG=en CORPUS_NAME=opensubtitles_sample |