savtadepth / Dockerfile
Dean
Initial commit for setting up DS environment
47cfa83
raw
history blame
No virus
300 Bytes
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