15 lines
335 B
Docker
15 lines
335 B
Docker
FROM jupyter/scipy-notebook:python-3.8.8
|
|
USER root
|
|
|
|
WORKDIR /usr/systemy
|
|
|
|
RUN mkdir -p l08 && cd l08 &&\
|
|
git clone https://github.com/thu-coai/ConvLab-2.git
|
|
|
|
RUN python -m pip install -e /usr/systemy/l08/ConvLab-2/
|
|
RUN python -m spacy download en_core_web_sm
|
|
RUN pip install pyjsgf==1.9.0
|
|
|
|
COPY . .
|
|
|
|
CMD jupyter-lab --allow-root |