Newer
Older
FROM nvidia/cuda:11.1.1-devel-ubuntu20.04
WORKDIR /app
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata \
&& apt-get install -y software-properties-common curl
RUN add-apt-repository ppa:deadsnakes/ppa && apt-get update && apt-get install -y python3.8 python3-pip ffmpeg
RUN alias python='python3' && alias pip='pip3' && pip install poetry
ADD poetry.lock ./
ADD pyproject.toml ./
ADD README.rst ./
ADD sziszapangma/ sziszapangma/
ADD experiment/ experiment/
ADD new_datasets/ new_datasets/
RUN ls -l
#RUN #poetry config virtualenvs.create false --local
RUN poetry run python -m spacy download de_core_news_lg
RUN poetry run python -m spacy download pl_core_news_lg
RUN poetry run python -m spacy download en_core_web_lg
RUN poetry run python -m spacy download it_core_news_lg
RUN poetry run python -m spacy download nl_core_news_lg
RUN poetry run python -m spacy download sp_core_news_lg
RUN poetry run python -m spacy download pt_core_news_lg