Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ COPY demo.ipynb /test/

# install M2
USER root
RUN apt-get update && apt-get install -y gnupg2
RUN echo 'deb https://faculty.math.illinois.edu/Macaulay2/Repositories/Ubuntu bionic main' >/etc/apt/sources.list.d/macaulay2.list
RUN wget http://www.math.uiuc.edu/Macaulay2/PublicKeys/Macaulay2-key
RUN apt-key add Macaulay2-key
RUN apt-get update && apt-get install -y software-properties-common
RUN add-apt-repository ppa:macaulay2/macaulay2
RUN apt-get update && apt-get install -y macaulay2

# run jupyter notebook
Expand Down