initial repo

This commit is contained in:
Josh Burman
2021-08-09 17:50:16 -04:00
commit 4975ab5b2c
10 changed files with 95 additions and 0 deletions

View File

@ -0,0 +1,13 @@
FROM python:3.9.6
RUN mkdir /app
WORKDIR /app
RUN python -m pip install pulp
RUN svn checkout https://projects.coin-or.org/svn/Cbc/releases/2.9.8 Cbc-2.9.8
RUN cd Cbc-2.9.8 && \
./configure && \
make && \
make install
CMD tail -f /dev/null