X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=docker%2Fos%2FDockerfile;h=19947ac3a41261b7ab732dedbffb22f2b32b27a1;hb=16c983a0834551922b6bcea5b10930e78f4e71c6;hp=61d1848e94effa789fc08e5a6e05c47a5003cd32;hpb=d1b564a6e36765c478db6519992cb8d074e85008;p=validation.git diff --git a/docker/os/Dockerfile b/docker/os/Dockerfile index 61d1848..19947ac 100644 --- a/docker/os/Dockerfile +++ b/docker/os/Dockerfile @@ -57,7 +57,8 @@ COPY --from=build /opt/akraino/validation /opt/akraino/validation COPY --from=build /opt/akraino/ltp.tar.gz /opt/akraino/ltp.tar.gz RUN apt-get update && apt-get -y install \ - python3-pip python3.7 &&\ + python3-pip python3.6 && \ + cd /usr/bin && ln -s python3 python && \ pip3 install -r /wheels/requirements/pip-requirements.txt \ -f /wheels && \ rm -rf /wheels && \ @@ -65,5 +66,7 @@ RUN apt-get update && apt-get -y install \ rm -rf /var/cache/apt/* && \ rm -rf /var/lib/apt/lists/* -# Install blueval dependencies +# Install bluval dependencies RUN pip3 install -r /opt/akraino/validation/bluval/requirements.txt +ENV LC_ALL=C.UTF-8 +ENV LANG=C.UTF-8