From 67b12bc260ab36849b09a411306bfb8a837fa3cb Mon Sep 17 00:00:00 2001 From: Jakub Maruniak Date: Tue, 21 Apr 2020 19:55:37 +0000 Subject: [PATCH] =?UTF-8?q?Nahr=C3=A1t=20soubory=20do=20=E2=80=9Epages/stu?= =?UTF-8?q?dents/2016/jakub=5Fmaruniak/dp2021/annotation=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jakub_maruniak/dp2021/annotation/Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile diff --git a/pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile b/pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile new file mode 100644 index 00000000..4beba407 --- /dev/null +++ b/pages/students/2016/jakub_maruniak/dp2021/annotation/Dockerfile @@ -0,0 +1,13 @@ +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 +