Skip to content
Snippets Groups Projects
Select Git revision
  • cc2de809597540d2fb41525be7add01360a706ce
  • develop default protected
  • master protected
  • 3.6.0
  • 3.5.1
  • 3.5.0
  • 3.4.1
  • 3.4.0
8 results

PersistenceHelper.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 601 B
    # syntax=docker/dockerfile:1
    
    FROM nvidia/cuda:11.2.2-cudnn8-devel-ubuntu20.04
    LABEL maintainer="convlab"
    
    ENV DEBIAN_FRONTEND noninteractive
    RUN apt-get update
    RUN apt-get install -y python3.8 python3-pip build-essential
    RUN pip install --no-cache-dir --upgrade pip
    
    WORKDIR /root
    
    COPY requirements.txt .
    RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
    RUN [ "python3", "-c", "import nltk; nltk.download('stopwords'); nltk.download('punkt'); nltk.download('wordnet')" ]
    
    COPY . .
    RUN pip install -e .
    
    RUN ln -f -s /usr/bin/python3 /usr/bin/python
    
    CMD ["/bin/bash"]