File size: 300 Bytes
47cfa83
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM pytorch/pytorch

RUN apt-get update && apt-get install -y software-properties-common && apt-get update
RUN add-apt-repository -y ppa:git-core/ppa && apt-get update && apt-get install -y git libglib2.0-dev

COPY requirements.txt ./
RUN pip install -r requirements.txt

RUN pip install jupyterlab