From ef939c9bf3fe47e8f2e994481b29057426bcca4e Mon Sep 17 00:00:00 2001 From: Jakub Maruniak Date: Fri, 22 May 2020 19:14:32 +0000 Subject: [PATCH] =?UTF-8?q?Aktualizovat=20=E2=80=9Epages/students/2016/jak?= =?UTF-8?q?ub=5Fmaruniak/dp2021/annotation/Dockerfile=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dp2021/annotation/Dockerfile | 29 ++++++++++--------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile b/pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile index 4beba407..41480994 100644 --- a/pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile +++ b/pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile @@ -1,13 +1,16 @@ -FROM python:3.8 -RUN mkdir /prodigy -WORKDIR /prodigy -COPY ./prodigy-1.9.6-cp36.cp37.cp38-cp36m.cp37m.cp38-linux_x86_64.whl /prodigy -RUN mkdir /work -COPY ./data/textfile.csv /textdata -RUN pip install prodigy-1.9.6-cp36.cp37.cp38-cp36m.cp37m.cp38-linux_x86_64.whl -RUN pip install https://files.kemt.fei.tuke.sk/models/spacy/sk_sk1-0.0.1.tar.gz -EXPOSE 8080 -ENV PRODIGY_HOME /work -ENV PRODIGY_HOST 0.0.0.0 -WORKDIR /work - +# > docker run -it -p 8080:8080 -v ${PWD}:/work prodigy bash +# > winpty docker run --name prodigy -it -p 8080:8080 -v C://Users/jakub/Desktop/annotation/work prodigy bash + +FROM python:3.8 +RUN mkdir /prodigy +WORKDIR /prodigy +COPY ./prodigy-1.9.6-cp36.cp37.cp38-cp36m.cp37m.cp38-linux_x86_64.whl /prodigy +RUN mkdir /work +COPY ./ner /work +RUN pip install prodigy-1.9.6-cp36.cp37.cp38-cp36m.cp37m.cp38-linux_x86_64.whl +RUN pip install https://files.kemt.fei.tuke.sk/models/spacy/sk_sk1-0.0.1.tar.gz +EXPOSE 8080 +ENV PRODIGY_HOME /work +ENV PRODIGY_HOST 0.0.0.0 +WORKDIR /work +