-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (16 loc) · 777 Bytes
/
Dockerfile
File metadata and controls
27 lines (16 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM nvcr.io/nvidia/nemo:v0.9
# Ensure apt-get won't prompt for selecting options
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y libsndfile1 sox \
python-setuptools python-dev && rm -rf /var/lib/apt/lists/*
ENV PATH=$PATH:/usr/src/tensorrt/bin
# install additional jupyter lab extensions
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
RUN apt-get install -y nodejs
# RUN jupyter labextension install jupyterlab_vim
RUN pip install jupyterlab-nvdashboard
RUN jupyter labextension install jupyterlab-nvdashboard
# RUN pip install flake8 && jupyter labextension install jupyterlab-flake8
RUN jupyter lab build
RUN cd / && git clone https://github.com/ericharper/sentence-classification.git
WORKDIR /sentence-classification