Skip to content

Instantly share code, notes, and snippets.

@MrHuxu
Created December 13, 2023 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrHuxu/bf7a01598d4feb64582ebc9dbf6e1c4a to your computer and use it in GitHub Desktop.
Save MrHuxu/bf7a01598d4feb64582ebc9dbf6e1c4a to your computer and use it in GitHub Desktop.
dive into deep learning
FROM continuumio/miniconda3
EXPOSE 8888
RUN conda install jupyter -y --quiet
RUN conda install pytorch torchvision cpuonly -c pytorch -y --quiet
RUN pip3 install d2l
RUN mkdir -p /opt/notebooks
ENTRYPOINT [ "jupyter" ]
CMD [ "notebook" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment